I have following structure:
Col1 Col2 Col3
---------------
F P R1
F P R2
F P R3
F P R4
Col3 values can be anything. Now I want, in following format, only the top 3:
Col1 Col2 Res1 Res2 Res3
------------------------------
F P R1 R2 R3
I tried it using Matrix, but I m not able to separate the result as 3 columns. Basically, the end user opens this report in Excel and applies filter and sorting to it.