I have a table that has two columns, ID and Value. For this example lets say there are three rows:
ID Value
A 1
B 2
C 3
The number of rows will remain constant, so I can create a field for each item I want to display, e.g. ItemAID, ItemBID, ItemCID, ItemAValue, ItemBValue, ItemCValue, however I don't know if that would be the best solution as it would require multiple select statements which SSRS doesn't seem to like.
What would be the best way of going about this, using multiple fields, writing a more elegant query or otherwise?