I am using Navision and I want to pull up customer balances as at a specific date.
I use the NL("Rows","Customer") to initiate each line then create the following cells NF("REF","Name") NF("REF",No.") (where REF is the cell referece to my NL function)
inthe cell in which I want to show the balance at I have entered =NF("REF","Balance","Date Filter",NP("DateFilter",,B4) (where cell B4 is the cell where I entered the specific date for which I want the customer balance)
I have confirmed that "Balance" is indeed a flowfield in the customer table.
What am I missing??
4 comments
-
Jet Reports Historic Posts I looked at one of my reports that give me the customer balance and we are using the "Net Change" field instead of the "Balance" field. This seems to work for us.
So in your example, the formula would be =NF("REF","Net Change","Date Filter",NP("DateFilter",,B4))
Does anyone know why "Balance" doesn't work, but "Net Change" does? -
Jet Reports Historic Posts Net Change does not seem to work for me either?
-
Jet Reports Historic Posts Noël_L
Here is a quick report that I wrote that has both the "Net Change" and "Balance" fields from the customer table. joejet is correct, "Net Change" should work.
QuickCustBalVSNet.xls
Change the date, run the report, and see if the Net Change is different than the Balance column. -
Jet Reports Historic Posts Thanks, I got it working now!