Hoping the CR Gurus will be able to assist, and please bear with me when I try and explain this as best I can.
I have a Field from my Stored Proc that if I run a Parameter as blank (rather then inputting a value) it will produce a multiple page report. The best example I can give is; there's a movie being played at multiple cinemas, my report will produce a page per cinema that's playing said movie - what I need to do is for every multiple cinema (there's only three Cinema's in total) that's playing the movie I need to make it as 'secondary'.
I cannot for the life of me figure out a if/then statement for this to work, I originally had;
If {@CinemaName} = 'Sesame Street' or {@CinemaName} = 'Cpt Birdseye' then 'Secondary Cinema'
else 'Primary Cinema'
But then that caused issues for when a movie was playing in only one of those two listed above obviously, resulting in 'Secondary Cinema' even though its only playing there.
Any ideas on how I could sort this, I've racked my brain with something to do with unique or counting the 'Movie' field and if its found more than once it will then run the above if/then, but I've had no luck actually implementing a solution across the multiple pages.
Thanks!