Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

totals query - 1

Status
Not open for further replies.

TimTDP

Technical User
Feb 15, 2004
373
ZA
In a query I have the following field:
FullValue:format([InvoicePrice]*[Quantity],"0.00")

If I try sum this field in a different Totals Query I receive a "Data Type Mismatch" error. Why?
 
Why?[/!]
Just because the Format function returns a STRING.

What about this ?
FullValue: Val(Format([InvoicePrice]*[Quantity],"0.00"))

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top