I have read most of the forum posts about masking and I thought that I had found a way to get the seat numbers in a GA section to not display, but nothing I've tried is working. Here's the background, I renumbered the GA section so that the seat numbers begin at 100. No other seats in the house have numbers that high. I have successfully changed the zone name via masking and have gotten the row number to not display if it's GA. I thought if I used the same basic code but said If(val>'99', ' ' , val) I'd be good to go, but no dice. I've tried at least a dozen variations of If and Case statements. It either displays my code or prints the seat number anyway.
Is the problem that it isn't one for one replacement? Does anyone know any way around this?
Any and all thoughts GREATLY appreciated!
Hi Katie,
Have you tried something like If(val > 99, '', upper(val) (the '' in the middle are two single quotes)? I've used a similar mask to hide row info in the past.
Sara