Different formats in a concatenated field

T

Tracy

I am trying to create a letter based on a query with several different
calculated and formatted fields concatenated into a continuous paragraph.
The trouble is, currency is not formatting as currency (as it does in the
underlying query) and the account number is not maintaining the specific
format I am using (a dash is being suppressed). I am also having trouble
with a concatenated address field that uses a zip+four with a dash to
separate.

Any suggestions?

Thanks,
Tracy
 
R

Rick Brandt

Tracy said:
I am trying to create a letter based on a query with several different
calculated and formatted fields concatenated into a continuous
paragraph. The trouble is, currency is not formatting as currency (as
it does in the underlying query) and the account number is not
maintaining the specific format I am using (a dash is being
suppressed). I am also having trouble with a concatenated address
field that uses a zip+four with a dash to separate.

Any suggestions?

Thanks,
Tracy

You have to use the Format() function inside your concatenation expression.

EX:

=[SomeTextField] & " " & Format([SomeCurrencyField] "Currency") & ...
 
T

Tracy

You have to use the Format() function inside your concatenation expression.

EX:

=[SomeTextField] & " " & Format([SomeCurrencyField] "Currency") & ...
Thankyou so much!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top