I have a list of suggested values for Table[Column].
All in the correct place and its working fine.
When I try to edit the Row at a later point, the Auto Compute Suggested Value takes over and I lose the previous input.
I thought, maybe run an If() formula in the suggested value box:
if(
isblank(Table[Column]),
Suggested[Value],
“”)
I figured I have used something similar in Sheets before. Then it returned Values in If need to be the same. So I tried:
if(
TEXT(isblank(Table[Column])),
Suggested[Value],
“”)
And that didn’t work either. But, I am not even sure if that could work in my scenario.
Suggested[Value] is a searchable Text column with many options.
I would like to effectively have Suggested Values for the initial input. If I put Suggested[Value] in the Initial Input, it does seem to work, but the Form view shows every single option, not as a drop down.
Any way around this issue?