0

I have a choice column "Program" which includes four options. If option A is chosen then I need Office Location (choice column) to populate. However, when I do conditional formatting, it is hiding Office Location column with any response from Program column. Conditional Formula on Office Location Column: =if([$Program] == 'A', 'true', 'false')

1 Answer 1

0

You don't need to use if statement here. It should be like =[$Program]=='A'

2
  • Removing if gives the error: enter a valid condition. =([$Program] == 'A', 'true', 'false') Commented Feb 21 at 15:05
  • Try exactly =[$Program]=='A' This expression is automatically evaluated as true or false; no need to explicitly state true/false in your expression Commented Feb 21 at 16:14

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.