I am trying to create a billing report.
I have two drop down boxes (Travel_Zone & Assignment_Type) that contribute to a numeric field which will be calculated.
I know that I can script
if ( Travel_Zone == 0 ) then
92 else
0
endif
but I would like to have both drop-down boxes be included in the if states, i.e.
if ( Travel_Zone == 0 ) and ( Assignment_Type == 0) then
92 else
0
endif
but I receive an error that the "and" is causing an issue. Any ideas?
if ( Travel_Zone == 0 and Assignment_Type == 0 ) then
92 else
0
endif