Lookups, different results, different input methods?

Just scanned through the thread, and it definitely looks like a one vs list-of-one issue (and maybe even a list-of-list-of-one further down), which started somewhere deep down and propagated like a virus throughout all of your data. That’s why it is important to always check for proper data types and notice and fix issues asap.

Related thread:

Examine all your Filter() formulas closely. Properly set “allows multiple values” on columns themselves. If you expect one value, use .First() after .Filter(). Live formulas should fix themselves after that. And for copied data make buttons that would automate unwrapping those potential lists, e.g.

thisRow.ModifyRows(
  SuspectedListColumn, thisRow.SuspectedListColumn.ListCombine().First()
)

P.P.S. Also get into habit of programming button actions with formulas and not by selecting dropdowns. In my experience it’s much easier to spot errors in formula code.

2 Likes