Upon creation of a record, I set a global variable called "varRecord". By using this and a ".________", I can utilize all the values in all the fields of the record. For example, varRecord.'Account Name' or varRecord.'Launch Date'.
I want to hide a button if the program type equals "ABC Program", but I can't figure out the expression. This expression does not work:
If(equals(VarRecord.'ProgramType'("ABC Program"),true),false, true)
I feel like I'm close. What am I missing?