That didn't quite work. :( Here is what I am trying to do: if the supplier name starts with the letters, F, G, H, I, J, K, or L then it is to return the name Zenovia, if not Manuela. Also if the supplier = Maintenance Supply return Zenovia, if not Manuela, and if the supplier = HD Supply return Manuela, if not Zenovia.
Case(Left([Supplier],1),
"F","Zenovia",
"G","Zenovia",
"H","Zenovia",
"I","Zenovia",
"J","Zenovia",
"K","Zenovia",
"L","Zenovia",
If([Supplier]="Maintenance Supply", "Zenovia", "Manuela",
If([Supplier]="Ferguson", "Manuela", "Zenovia",
If([Supplier]="HD Supply", "Manuela", "Zenovia")))))
The error says "Expecting boolean but found text"
------------------------------
Brandy Nunes
------------------------------