Apr 4, 2003 #1 TimothyP Programmer Aug 6, 2002 135 US What is the proper syntax to accomplish this? If Table.FieldA is null use Table.FieldB else use Table.FieldA. Thanks in advance for your assistance.
What is the proper syntax to accomplish this? If Table.FieldA is null use Table.FieldB else use Table.FieldA. Thanks in advance for your assistance.
Apr 4, 2003 #2 Naith Programmer May 14, 2002 2,530 GB If IsNull({TableA.Field}) Then {TableB.Field} Else {TableA.Field} Upvote 0 Downvote
Apr 4, 2003 Thread starter #3 TimothyP Programmer Aug 6, 2002 135 US On the money Naith! As usual Thanks Upvote 0 Downvote