Initial value of blank

Hi,
I wonder if you can set a column to reset to it’s initial value of blank, so basically when another column’s value matches the formula then the cell is reset to be empty.?

Thanks in advance,
Chris

Solved Solved
0 15 2,797
1 ACCEPTED SOLUTION

@LeventK’s IFS() is equivalent to:

IF(
[ColumnA]="SomeValue","Show This",
""
)

or:

IFS(
[ColumnA]="SomeValue","Show This"
)

View solution in original post

15 REPLIES 15
Top Labels in this Space