variable
I have a report, I pass my variable as [var1] , [var2], [var3]
currently I add them in Delphi , then show it in the report,
like this
Print.Variables :=FieldByName('var1').Value + FieldByName('var2').Value;
Is there any way, to add both values inside the report instead on the code .
SUM( var1, var2) doesn't work
I tried functions, no chance
Thanks
currently I add them in Delphi , then show it in the report,
like this
Print.Variables :=FieldByName('var1').Value + FieldByName('var2').Value;
Is there any way, to add both values inside the report instead on the code .
SUM( var1, var2) doesn't work
I tried functions, no chance
Thanks
Comments