I have a slightly weird question.
Can I have multiple IIF expressions within one field?
It seems possible, but I am not sure how to accomplish this.
I would like to change the cell style based on the text inside of it.
But the system does not like me adding another IIF statement within my expression.
This is what I have right now to keep it simple, but once I can get it to work, I will add a couple more colors.
=IIf( [InventoryItem.PreferredVendorID]='100045', 'purple20', 'default') OR
IIf( [InventoryItem.PreferredVendorID]='100351', 'yellow20',' default')
The System doesn’t like my OR placement, does anyone know a better way to do this?