J
JohnLute
I'm having trouble with IIf Nz in an unbound control. Here's what I've got:
=IIf(Nz([SUcuin],0)<>0,[sfrmFGPKConfigsPVs].[Form]![SumPVTotalcuin],[SUcuin])
The way I need it to work is:
If [SUcuin] has a value then the unbound control needs to return this value.
If [SUcuin] is null then the unbound control needs to return the value in
[SumPVTotalcuin].
I believe I have it properly written however it behaves:
If [SUcuin] has a value then the unbound control returns the value in
[SumPVTotalcuin].
If [SUcuin] is null then the unbound control returns null.
Does anyone see what I'm doing wrong? Your help is greatly appreciated.
Thanks!
=IIf(Nz([SUcuin],0)<>0,[sfrmFGPKConfigsPVs].[Form]![SumPVTotalcuin],[SUcuin])
The way I need it to work is:
If [SUcuin] has a value then the unbound control needs to return this value.
If [SUcuin] is null then the unbound control needs to return the value in
[SumPVTotalcuin].
I believe I have it properly written however it behaves:
If [SUcuin] has a value then the unbound control returns the value in
[SumPVTotalcuin].
If [SUcuin] is null then the unbound control returns null.
Does anyone see what I'm doing wrong? Your help is greatly appreciated.
Thanks!