Trying to extract field from the datatype text field
Status: (IIf([STATUS_CODE]='010',"Open",[STATUS_CODE]) Or IIf([STATUS_CODE]='100',"Hold",[STATUS_CODE]))
Getting -1 value.
Please, look this up.
I had tried to change datatypes but no avail.
Trying to extract field from the datatype text field
Status: (IIf([STATUS_CODE]='010',"Open",[STATUS_CODE]) Or IIf([STATUS_CODE]='100',"Hold",[STATUS_CODE]))
Getting -1 value.
Please, look this up.
I had tried to change datatypes but no avail.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Try
Status: IIf([STATUS_CODE]='010',"Open",IIf([STATUS_CODE]='100',"Hold",[STATUS_CODE]))
Hooray! Thanks