View Column Math

Greeting -

Here’s my situation, I have a view with 4 columns thats lists numbers, the numbers are added up going down to give me a total, I need to take that total and then using the numbers across the 4 columns come up with another total. Is this possible can someone point me in the right direction please.

Example


             2nd total

      1111     13

      2222     17

      3333     21

      3333     21

1st toal 9999

Subject: Cannot add columns

Add a fifth column whose formula is the sum of the formulas in the first four columns. So if your first four column formulas are “MyField1”…“MyField4”, your fifth column should contain @Sum(MyField1:…:MyField4).

Subject: RE: Cannot add columns

Great, thanks Lawrence