Hi,
I need help to read following JSON format to convert into table format.
Example :1
EMP ID | EMP_COMMON_FULL_NAME | PEOPLE_EMAIL | PEOPLE_MANAGER_NAME |
2180 | Kochi Limot | NULL | Dex Albert |
2183 | Nix Jerry | ola.pola@test.com | Ola Pola |
Please advise, how to achieve above output? I tried using JSON but I am not getting expected output.
Thanks
Mayank Patel
EMP ID | EMP_COMMON_FULL_NAME | PEOPLE_EMAIL | PEOPLE_MANAGER_NAME |
2180 | Kochi Limot | NULL | Dex Albert |
2183 | Nix Jerry | nix.jerry@test.com | Ola Pola |
Hi @minvestis
The JSON Parse tool is your friend here. It splits the json into name/value pairs. From there its a matter of splitting the attribute names using a Regex tool and a couple of crosstabs to get your output
Dan