Hello All,
I have a few fields I have added to extended UD table maint. RMAHead, 3 check boxes. In my RMA form I am trying to make a calculated field. If checkbox 1 then "UPS", else if checkbox 2 then "Trucking" else if checkbox 3 then "Other", else "Scrap at Customers". I'm not sure if it matters where I insert the field on the report or if it is the code that is wrong. Here is the code. Thanks
=IIF(Fields!UPS_c.Value = True, "Ship Via UPS on Account", IIF(Fields!Trucking_c.Value = True, "Ship Via Trucking Carrier - Details Below", IIF(Fields!ReturnOther_c.Value = True, "Other Shipping Instructions - Details Below", Nothing)))