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

I want to add all fields in a row?????

Status
Not open for further replies.

gnibbles

Programmer
Mar 15, 2000
79
CA
I thought I could just add in this expression<br><br>=Sum([Local_Charges]+[Other_Charges]+[Total_Long_Distance]+[Misc]+[Tax]+[Adjustments])<br><br><br>but it didnt work it adds up the WHOLE table i want to just add up a single row.
 
SUM is an aggregate function.&nbsp;&nbsp;If you want the individual rows, don't use the SUM function.<br><br>=[Local_Charges]+[Other_Charges]+[Total_Long_Distance]+[Misc]+[Tax]+[Adjustments]<br><br><br><br><br> <p>Jim Conrad<br><a href=mailto:JimConrad@Consultant.com>JimConrad@Consultant.com</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top