Hi All.
I am trying to calculating a field ([Status]) based on another field ([SymbolID]). The code that I am using is as below:
Dim Status
IF [SymbolID] = '0' THEN
Status = 'In Construction'
Else
Status = 'Planned'
EndIf
But I keep receiving failure messages. Could you please help me with that?
Thanks in advance,
Aza