Hey guys !
I have A simple formula for selecting multiples values which contains Lists in it and I split those result to create a dropdown.
Formula:
SPLIT(
SELECT(
Pieza[Ubicación],
[ID Pinta]=[_THISROW].[OP].[Pintas]
),
","
)
It works!, But When The user select the value, appsheet is not saving it
Selected Value
Result After Click "Done"
Thank you in advance
Solved! Go to Solution.
Change your SPLIT() to SPLIT(TEXT()), then changed the delimiter to " , " (space-comma-space).
maybe the function SPLIT is returning some weird values.
Why do you need to use SPLIT? SELECT returns a list and that should work as an input to a dropdown?
I would try it without the SPLIT.
I need to use split because the values that I'm calling are type EnumList, So, it is being save as "Value1, Value2, Value3" So I use Split with the "," To "Split" those values
I tested with the condition you mentioned and it works without any issues..
What is the data type of [Tipo Pieza], text, ref to something?
Change your SPLIT() to SPLIT(TEXT()), then changed the delimiter to " , " (space-comma-space).
Perfect !
IT Worked !! Thank you
User | Count |
---|---|
16 | |
11 | |
9 | |
8 | |
4 |