hello every body ,
how i can do same the the attached file with stimulsoft report specially calculating the balance column ,
before i was do it with microsoft excel and crystal report ,now how we can do with stimulsoft .
thank you
how to do this financial statement in stimulsoft
-
- Posts: 24
- Joined: Sun Dec 29, 2013 7:10 am
Re: how to do this financial statement in stimulsoft
Hello,
Can you please send us a test data for analysis.
Thank you.
Can you please send us a test data for analysis.
Thank you.
-
- Posts: 24
- Joined: Sun Dec 29, 2013 7:10 am
Re: how to do this financial statement in stimulsoft
i have data table has columns same the attached picture without balance column
i want to add balance column in report and apply this equation
Current balance = (previous balance + debit) - credit
on each row in my data table
thanks for response .
i want to add balance column in report and apply this equation
Current balance = (previous balance + debit) - credit
on each row in my data table
thanks for response .
Re: how to do this financial statement in stimulsoft
Hello,
As a way, you can use the additional variable and in BeforePrint event of Databand use the following code:
VariableBalance = VariableBalance + DataSource1.Debit - DataSource1.Credit
Thank you.
As a way, you can use the additional variable and in BeforePrint event of Databand use the following code:
VariableBalance = VariableBalance + DataSource1.Debit - DataSource1.Credit
Thank you.