Good afternoon everyone!
I'm starting to go deeper in SSRS and I can't reproduce the following need.
Imagin I have a dataset with the top 3 employees of the month based on sales amount (using TOPCOUNT function in mdx).
Now I want to display in the report body the TOP 1 employee name in one textbox, the TOP 2 employee name in another textbox, and the TOP 3 employee name in another different textbox. How can I do it?
Case:
Dataset rows:
Employee Production
Jones 10
Martin 12
William 13
Report Body: ( this is what I want to have )
TextboxA (top 1 employee): Jones
TextboxB (top 2 employee): Martin
TextboxC (top 3 employee): William
Many thanks for your attention!