Column hidden

I want to set Column 15 to "No" if Column 14 is "Yes" , else leave it unchange.

I use If condition and use ""

But the next column will be hidden when I set column 14 to Yes.

0 1 45
1 REPLY 1

Hello, I'm not sure I understood the problem at 100%, but I can proposed this formula for the Column 15:

IF(
[Column 14],
FALSE,
[_THIS]
)

 

Top Labels in this Space