|
-
Feb 12th, 2009, 01:25 AM
#1
Thread Starter
Addicted Member
[RESOLVED] formula balance
hi there!, hope somebody can help me, i want to get the running balance of my yearly budget like this
Budget Full Year: 2,284,500.00
total expenses on january: 160,000.00
BUDGET BALANCE: 2,124,500.00
total expenses on february 100,000.00
BUDGET BALANCE: 2,024,500.00
i was trying a formula code like this:
Code:
numbervar budget := budget - totalexpenses;
i placed it in the group section,
but it wont work, anybody there who knows this? thank you.
-
Feb 12th, 2009, 01:33 AM
#2
Thread Starter
Addicted Member
Re: formula balance
i modified my code and tried this:
Code:
numbervar budget;
budget :={usp_rpt_BudgetMonitoringReport;1.BUDGET AMOUNT};
budget := budget - {#RTotal0};
it wont work either, the budget keeps on reseting to its original amount
-
Feb 12th, 2009, 08:50 PM
#3
Re: formula balance
Try terminating the formula with the variable name after a semicolon, as
Code:
numbervar budget := budget - totalexpenses; budget;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|