Show if column list based on conditions

How can I make show or hide column with list based on conditions , exemple:
if I choose
[Seller]= B then show column [index] with list 1.5,1.6
OR
[Seller]= A then show column [index] with list 1.5,1.56,1.61,1.67,1.74
OR
[Seller]= C then show column [index] with list 1.5,1.6,1.7,1.8,1.9

3X_e_a_ea445cf1d97b718658de7a7048f2223a462d5f55.jpeg

0 3 191
3 REPLIES 3

Hello, please put this in your Suggested Values or Valid If

IFS(
     [Seller] = “A”,
     LIST(
         “1.5”,
         “1.56”,
         “1.61”....
     ),

    [Seller] = “B”,
     LIST(
         “1.5”,
         “1.6”
     )...
)

thank you sir for responding me it works nice , what if I want to show it like “look at pic” instead of dropdown list
3X_5_b_5b0be05fc02dc8bee02cd401107a93f043dfd44a.jpeg
I tried datatype “ENUM” but gives error

Please check this article how you can create a dynamic dependent dropdown…

Top Labels in this Space