Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rakhiIs there a way of doing calculation between rows, for example if I have the following field and values:
field1, field2
10,22
33, 40
55, 66
and I want to subtract the value of field2(22) of row 1 with value of field1(33) row 2 and result should display as below.
Field1, field2, temval, diff
10, 22, 22, null
33,40,40,11
55,66,66,15
Thanks in advance.