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 ?
Solved! Go to Solution.
Hi @Kaish ,
is this suitable for your problem? I am using 2 multi row formula tools to identify if the content is needed or can be made Null().
Easiest way is to just clear the data from Region and Type when Value="$", but it looks like @niklas_greilinger 's solution is much more thought out!