J
jr1956
I have 2 expressions that uses Nz to populate Null data to
0. This works very well but, it removes the format. Both
of the expressions are below. The first expression is set
in the properties to be currency format and the second is
set to percentage. Did I put Nz in the wrong syntax?
Currency example
Year To Date Balance: Nz([tblBudgetSubtype]!
[OpticalBudgeted]-[Expenditures Concat]![SumOfAMOUNT],0)
Percent example
Pct of Budget Spent: Nz(IIf([tblBudgetSubtype]!
[OpticalBudgeted]=0,0,[Expenditures Concat]!
[SumOfAMOUNT])/IIf([tblBudgetSubtype]![OpticalBudgeted]
=0,1,[tblBudgetSubtype]![OpticalBudgeted]),0)
Thanks Dennis
0. This works very well but, it removes the format. Both
of the expressions are below. The first expression is set
in the properties to be currency format and the second is
set to percentage. Did I put Nz in the wrong syntax?
Currency example
Year To Date Balance: Nz([tblBudgetSubtype]!
[OpticalBudgeted]-[Expenditures Concat]![SumOfAMOUNT],0)
Percent example
Pct of Budget Spent: Nz(IIf([tblBudgetSubtype]!
[OpticalBudgeted]=0,0,[Expenditures Concat]!
[SumOfAMOUNT])/IIf([tblBudgetSubtype]![OpticalBudgeted]
=0,1,[tblBudgetSubtype]![OpticalBudgeted]),0)
Thanks Dennis