Please help!!!
The following formula is what I use to add fields, however; when I refresh my data in excel, I get an undefined "nz". the formula works in access, but I can't seem to get my excel to retrieve the data? what am I doing wrong?
ACC: (CInt(nz([Allocated Overwidth Charge Cost])+(nz([Allocated Stop Charge Cost])+(nz([Allocated Tarp Charge Cost])))))
OK, I'm made changes and it seems to work, but the column is giving me zeros ACC: IIf(IsNull([Allocated Overwidth Charge Cost])=True,0,+(IIf(IsNull([Allocated Stop Charge Cost])=True,0,+(IIf(IsNull([Allocated Tarp Charge Cost])=True,0)))))
It's not showing me the value if it's not null
The following formula is what I use to add fields, however; when I refresh my data in excel, I get an undefined "nz". the formula works in access, but I can't seem to get my excel to retrieve the data? what am I doing wrong?
ACC: (CInt(nz([Allocated Overwidth Charge Cost])+(nz([Allocated Stop Charge Cost])+(nz([Allocated Tarp Charge Cost])))))
OK, I'm made changes and it seems to work, but the column is giving me zeros ACC: IIf(IsNull([Allocated Overwidth Charge Cost])=True,0,+(IIf(IsNull([Allocated Stop Charge Cost])=True,0,+(IIf(IsNull([Allocated Tarp Charge Cost])=True,0)))))
It's not showing me the value if it's not null
Last edited: