Forum Discussion
QuickBaseAdmi10
9 months agoQrew Cadet
Hey LRJ,
You'll likely need to split the list up or simply use a totext function.
You can try either of these based on what you're looking to do:
If(totext([# of combined text ship to]) = "KC", .....
or
Split(List(" ; ",
If([# of combined text ship to]="KC", 'insert your div style here' ),
If([# of combined text ship to]="CA", 'insert your div style here' ))
the = will only work if that is the only thing in the combined text
the contain function will work if what you're searching for is contained, however, if multiple if statements are true, it will only show you the first if statement made true