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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add 2 text fields error 2

Status
Not open for further replies.

Tekhelpnet

Technical User
Joined
Oct 9, 2007
Messages
63
Location
US
I need sum of 2 fields from the table. Text datatype.
I am writing =[Field1]+[Field2]
and it gives me
2 3 23 instead of 5
1 5 15 instead of 6

What is wrong with my formulas?

=VAL[Field1]+VAL[Field2] gives error
SUM([Field1],[Field2]) gives error as well...

Thanks
 
You are missing brackets:

=VAL([Field1])+VAL([Field2])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top