Quote:
Originally Posted by lghovden06
I am doing a monthly report for a company in access. I am fairly new to access so I don't know a whole lot. The report was orginaly created in excel. one of the columns, accounts receivable, equals the previous days accounts receivalbe + time sales - Rec on Account. At the beginning of th month the Accounts Receivable equals the final day in the last month's. I am trying to create an if statement to check if it is null.
Here is what I kind of came up with
Accounts_Receivable: If(IsNull( [Accounts_Receivable]),[last_month]+[time_sales] - [rec_on_acc], [Accounts_Recievable] + [time_sales] - [rec_on_acc]
I don't even think this is close but PLEASE HELP!
hey Ighovden,
I believe the best solution would be to have a running sum.
I'm talking about Reports here. If you're creating a report you can have a running sum field that would always have the latest 'sum'.
It would not matter wether the sum is from previous month or not.
You can read more about creating a running sum in reports if you search MsAccess help for 'running sum'.
regards,
H.