Show SUM expression in text box

M

MikeO

I am trying to combine a statement leading up to the sum of a field.
Currently I use
="Total cost of items for order date "&[transactiondate] and then a separate
text box for =sum[line total]. How can I combine the 2 expressions into one
expression?
Thanks,
Mike
 
D

Duane Hookom

Try:
="Total cost of items for order date " & [transactiondate] & ": " &
Sum([line total])
 
M

MikeO

Thanks, I'll give it a try.
Mike

Duane Hookom said:
Try:
="Total cost of items for order date " & [transactiondate] & ": " &
Sum([line total])
--
Duane Hookom
Microsoft Access MVP


MikeO said:
I am trying to combine a statement leading up to the sum of a field.
Currently I use
="Total cost of items for order date "&[transactiondate] and then a separate
text box for =sum[line total]. How can I combine the 2 expressions into one
expression?
Thanks,
Mike
 

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

Top