how to filter in a form

    How can I filter in a form?

I want that when I'm selecting in estat, "Magatzem"

only appears in subestat: "mecanitzat" and "pintant"

 

J_jvs_1-1701009087017.png

J_jvs_2-1701009344365.png

 

thks in advance

JVS

 

 

Solved Solved
0 5 314
1 ACCEPTED SOLUTION

  Try this without True

IF( [ESTAT]= "Magatzem" ,

{ "mecanitzat" , "pintant" } ,

{ "mecanitzat" , "pintant" , "comprat" } )

View solution in original post

5 REPLIES 5

Go to column [SUBESTAT] and use this function in Vaild If 

IF( [ESTAT]= "Magatzem" ,

{ "mecanitzat" , "pintant" } , True )

Hi Izzat, thks but

appears this error message

"IF function is used incorrectly:the second input (value-if-true) and third input (value-if-false) should have the same type."

  Try this without True

IF( [ESTAT]= "Magatzem" ,

{ "mecanitzat" , "pintant" } ,

{ "mecanitzat" , "pintant" , "comprat" } )

Izzat, thks a lot for your help!

You are welcome. 

Top Labels in this Space