I think that it might be easy, but I cant figure out how to make it work.
I have a column chart with tickets grouped by time (rounded to 15 minutes)
- X Axis - Time Group (Rounded to 15 minutes)
- Y Axis - Count(Tickets)
I'd like to show "ticket number" and "title" of all grouped tickets in one column as a tooltip
I have already tried lookup / lookupset / miltiplelookup - it didn't work. I have also tried to join the filed -> =Join(Fields!IB.Value, ", ")
. That didn't work either. Im just getting #error
by hovering over my column. If i'm just displaying the field, i'm getting only one value =Fields!IB.Value
.
Any thoughts?
p.s. im Using Report-Builder and Ssrs2016
This how it may look like:
As i mentioned earlier, I have used some rounding function to group Tickets by the time Column. This is the code:
=Mid(Fields!time.Value,1,3) & Replace( Mid(Fields!time.Value,4,5),
Mid(Fields!time.Value,4,5),
Switch(
Cint(Mid(Fields!time.Value,4,5)) >= 00 And Cint(Mid(Fields!time.Value,4,5)) <= 14, "00" ,
Cint(Mid(Fields!time.Value,4,5)) >= 15 And Cint(Mid(Fields!time.Value,4,5)) <= 29, "15" ,
Cint(Mid(Fields!time.Value,4,5)) >= 30 And Cint(Mid(Fields!time.Value,4,5)) <= 44, "30" ,
Cint(Mid(Fields!time.Value,4,5)) >= 45 And Cint(Mid(Fields!time.Value,4,5)) <= 59, "45" ))