ChristopherL
Registered User.
- Local time
- Today, 10:58
- Joined
- Jul 2, 2013
- Messages
- 90
Hi, I am having some trouble with an iif statement as selecting the field..
I have two columns, one called [sdCounterpartyprice] and one called [bid]
I want to select the [bid] if it's not equal to Null or 0, if it is equal to that then pick [sdCounterpartyprice]
this doesn't work
I have two columns, one called [sdCounterpartyprice] and one called [bid]
I want to select the [bid] if it's not equal to Null or 0, if it is equal to that then pick [sdCounterpartyprice]
this doesn't work
Code:
CptyPrice: IIf ([bid] is null or = 0; [sdCounterpartyprice]; [bid])