is there such a thing? I have multiple addresses in table A for each customer number. I need to go through all addresses for one customer and where address.field equals "flag" then pass the value.
Thanks - I can't just say if address.field = flag then pass the value because it will only give me the first one it comes across. I have the potential of having multiple addresses in my address table for one customer id.
One data record:
ID address1 address2
AAA 123 234
BBB abc cde
or as multiple records:
ID address
AAA 123
AAA 234
BBB abc
BBB cde
In either case you would have to use a formula to pass your value.
If it's all one data record:
if ({address1}= "test" or {address2}="test" then value
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.