Lookup Values not showing

Hi there.

I like the App Builder - it show a lof of potential.
However, I’m relying a lot on lookups in my tables. I can’t seem to select any of them in App Builder.

Screenshot 2024-03-12 at 10.56.07

Hi David,

Good to read that you like the app builder.

Working with lookup fields is indeed in issue at this time. A workaround is creating a new rollup field (in your case for example: Brand name). This field refers to the Name field of the Brand table and you can use the min() function to convert it to plan text.

Another workaround - that does more or less the same - is adding a formula field with the following formula

join(lookup('Brand','Name'),'')

This will also convert the value of a lookup field into plain text that can be used in the app builder.