Hi Guys,
I have three columns in my table. In my report I have a 4th column which simply gives the total of the 3 via this formula:
=if(IsNull([txtBar_NL]);0;[txtBar_NL])+if(IstNull([txtBar_Kde]);0;[txtBar_Kde])+if(isnull([txtBar_Fern]);0;[txtBar_Fern])+if(isnull([txtBar_SWL]);0;[txtBar_SWL])
Now that works fine..However I now need the total of this sum(fourth column) to be displayed also. Since its not really a column from a table, I have problems using the function 'Sum' since it expects a column name to follow.
How do I tackle this problem?
Thanks in advance!!
I have three columns in my table. In my report I have a 4th column which simply gives the total of the 3 via this formula:
=if(IsNull([txtBar_NL]);0;[txtBar_NL])+if(IstNull([txtBar_Kde]);0;[txtBar_Kde])+if(isnull([txtBar_Fern]);0;[txtBar_Fern])+if(isnull([txtBar_SWL]);0;[txtBar_SWL])
Now that works fine..However I now need the total of this sum(fourth column) to be displayed also. Since its not really a column from a table, I have problems using the function 'Sum' since it expects a column name to follow.
How do I tackle this problem?
Thanks in advance!!