Good day colleagues,
I have an issue with calculating total for columns and total for rows
Lets say I have such table
name jan feb march october
a 1 2 5 1
b 2 2 5 1
c 3 2 5 1
And My output should be in this way, which total should be added by rows and by columns as well. I did with summarize tool, but the problem is that other months will be automatically added later. What can you advice to solve it?
name jan feb march october nov (will be added automatically) dec(will be added automatically) TOTAL
a 1 2 5 1 null for now null for now 8
b 1 2 5 1 null for now null for now 10
c 3 2 5 1 null for now null for now 11
Total 6 6 15 3 null for now null for now 31
Thanks in advance,