Tessitura Nation!
I am seeking a report that shows seat map by price zone, similiar either the House Map Print report (all same parameters) but displaying the price zone legend per seat or like the SSRS interacive seat map looking at the price zone tab of the seat map, not the seat type tab.
Does such a creature exists?
Thanks!
Naomi
I'm also seeking this out... I'm guessing if there's no reply since 2010 there may not be a report that does this?
I converted Ryan's example code in the SSRS pack they mention at the conference.
I was doing it as we needed to specify the colours for zone numbers for our SYOS map
Insert @seats (screen_no, xpos, ypos, seat_no, zone_no )Select s.screen_no, s.xpos, s.ypos, seat_no = s.seat_no, zone_no = p.zone_noFrom [dbo].T_SEAT s (NOLOCK)JOIN [dbo].TX_PERF_SEAT p (NOLOCK) ON s.seat_no = p.seat_no and p.perf_no = @perf_no and p.pkg_no = 0JOIN @screens sc on sc.screen_no = s.screen_noWhere s.smap_no = @smap_noand s.is_seat=1
changed the final sql statement to essentially was so we could enter html colour styles into abbreviation in zone table or randomly assign them so map was distinctive
Select s.screen_no, screen_description = sc.description, s.seat_no, s.xpos, s.ypos, z.zone_legend, backcolor = case when z.abbrev like '#[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' then z.abbrev when s.zone_no%5=0 then '#ffff00' when s.zone_no%5=1 then '#00cc00' when s.zone_no%5=2 then '#ff6666' when s.zone_no%5=3 then '#ff9933' when s.zone_no%5=4 then '#9999cc' else '#ffffff' endFrom @seats s JOIN @screens sc on s.screen_no = sc.screen_noleft join T_ZONE z (NOLOCK) on s.zone_no=z.zone_no and z.zmap_NO=@zmap_no
Order By s.screen_no, s.xpos, s.ypos