Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi anyone pls help me with this...
I have an Table with sum of total amounts mentioning (Rs.) infront of the value how to get a total value of that row..?
Eg :
I want a total for this table at bottom...
Thanks in Advance
Hi
Try sum(num(TextBetween(Amount,'Rs.','')))
BR
Ariel
or
sum(num(replace(Amount,'Rs.','')))
If you want the above rows to contain the 'Rs.' you should use:
if(rowno()=0,sum(num(replace(Amount,'Rs.',''))),Amount)
and set the total modus to 'expression total'.