inside a text box
currently using chr(13):
=IIf(IsNull([addr1]),"",[addr1]) & IIf(IsNull([addr2]),"",Chr(13) & [addr2]) & IIf(IsNull([addr3]),"",Chr(13) & [addr3]) & IIf(IsNull([addr4]),"",Chr(13) & [addr4]) & IIf(IsNull([city]),"",Chr(13) & [city]) & IIf(IsNull([Province]),"",", " & [Province]) & IIf(IsNull([Postal]),"",Chr(13) & [Postal])
Should I be using VBNewline or Chr(10)?
This is for an access 97 DB
TIA
Bastien
There are many ways to skin this cat,
but it still tastes like chicken
currently using chr(13):
=IIf(IsNull([addr1]),"",[addr1]) & IIf(IsNull([addr2]),"",Chr(13) & [addr2]) & IIf(IsNull([addr3]),"",Chr(13) & [addr3]) & IIf(IsNull([addr4]),"",Chr(13) & [addr4]) & IIf(IsNull([city]),"",Chr(13) & [city]) & IIf(IsNull([Province]),"",", " & [Province]) & IIf(IsNull([Postal]),"",Chr(13) & [Postal])
Should I be using VBNewline or Chr(10)?
This is for an access 97 DB
TIA
Bastien
There are many ways to skin this cat,
but it still tastes like chicken