Split in Valid_If not allowing me to select and save

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

Juan_Camilo_Sie_0-1652217792690.png

Result After Click "Done"

Juan_Camilo_Sie_1-1652217830925.png

 

Thank you in advance

 

Solved Solved
0 5 199
1 ACCEPTED SOLUTION

Change your SPLIT() to SPLIT(TEXT()), then changed the delimiter to " , " (space-comma-space).

View solution in original post

5 REPLIES 5

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

Top Labels in this Space