Hi,
I want to extract rows from a set of rows according to my selection. Eg-
The set of rows is :
Name | Value | Type |
A | 12 | X |
A | 33 | Y |
A | 22 | Z |
B | 23 | X |
B | 11 | X |
C | 34 | R |
D | 21 | R |
My requirement is that if I select A than I should get-
A | 12 | X |
33 | Y | |
22 | Z |
Similarly for B,C and D selection corresponding rows from source should come.
I tried doing this in MS Excel using =IFERROR(INDEX($B$5:$B$11, SMALL(IF($A$14=$A$5:$A$11, ROW($A$5:$A$11)-MIN(ROW($A$5:$A$11))+1, ""), ROW($A1))),"") formula but when I preview the data in SAP Dashboards(Xcelsius) it gives me error that IFERROR and ROW function is not supported.
Now,Please let me know how to perform this in SAP Dashboards(Xcelsius).
Regards,
Javed