Dynamic Show_if Column

Hey everyone,

I have a column [Question] that I only want to show in a slice depending on the value of another column [ABC] but I want it hidden if the other column is emptyโ€ฆ

So if column [ABC] (Type=text) has a value (this value is different in most rows)
Then column [Question] (Type=ENUM) will show,
If [ABC] is blank then column [Question] will be hidden

Hopefully this makes senseโ€ฆ

Cheers

Solved Solved
0 3 324
1 ACCEPTED SOLUTION

You could write NOT(ISBLANK([ABC])) or ISNOTBLANK([ABC]) in the show_if constraint of the [Question] column.

View solution in original post

3 REPLIES 3

You could write NOT(ISBLANK([ABC])) or ISNOTBLANK([ABC]) in the show_if constraint of the [Question] column.

Steve
Platinum 4
Platinum 4

For reference:

@Suvrutt_Gurjar
Worked perfectly, thanks heaps

Top Labels in this Space