Hi All, I have a requirement where I have a set of data and the output I want has to be grouped, let me show an example.
Data:
Region Type Value Total
NA External # 5
NA External $ 200
EMEA External # 4
EMEA External $ 350
EMEA Internal # 6
EMEA Internal $ 500
ASIA Internal # 2
ASIA Internal $ 200
Output:
Region Type Value Total
NA External # 5
$ 200
EMEA External # 4
$ 350
Internal # 6
$ 500
ASIA Internal # 2
$ 200
Here, the data which comes under the same category are not visible for better view, the data comes under the same category. How can this be achieved ?