saguy Posted August 13, 2015 Share Posted August 13, 2015 Hello All! I have a list of names and address. Some names have two address, a local address and a perm address. Is it possible to have the program insert the local address less it's not available, in which case, we can use the perm address? Regards, Quote Link to comment Share on other sites More sharing options...
step Posted August 13, 2015 Share Posted August 13, 2015 Sure: return (Field("Local Address")) ? Field("Local Address") : Field("Perm Address"); Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted August 13, 2015 Share Posted August 13, 2015 return Field("Local Address") || Field("Perm Address"); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.