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 188
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