I am trying to create a query that sums data greater than zero example:
Blue cross month1 month2 month3 month4
-120.00 50.00 300.00 500.00
450.00 45.00 65.00 -45.00
78.00 -15.00 15.00 35.00
I only want to add values that are greater than 0.00 I don't want to add the negative balance. I would like to keep it in the column format like above so for example column4 total should read 535.00.
Blue cross month1 month2 month3 month4
-120.00 50.00 300.00 500.00
450.00 45.00 65.00 -45.00
78.00 -15.00 15.00 35.00
I only want to add values that are greater than 0.00 I don't want to add the negative balance. I would like to keep it in the column format like above so for example column4 total should read 535.00.