Hi All,
Source (Input Data):
Original data has columnar wise,
Column1, Column2, Column3, Column4, Column5, Type, SubType, Sales
After used json with xpath expression getting data in the below structure, but still Column4.
Expected:
Below is the expected output based on the "Original data" (input) that is coming.
I have scenario where on top I want to show all different column values and below it should show child values related to specific Column (Parent).
Name Sales
Column1 100
Column2 100
Column3 100
Column4 100
Column5 100
Type1 50
Subtype1 25
Subtype2 25
Type2 50
Subtype1 35
Subtype2 15
So till "Column5" I was able to achieve the values what is expected using json and inside json have used xpath expressions, but got stuck from Type1, Type2 of Column5. Any help/suggestions are really appreciated.
I am looking for xpath expression where it should fetch the child (ex: Type/SubType) values related to Parent (ex: Column5).
Thanks in advance.