Hello Community,
Hope you are well.
I need your help with the below problem that I face.
The below example table shows, for each project, the monetary value it will generate and the benefit category it belongs to. Finally, each benefit category is further allocated to a specific type. Unfortunately, based on the way the table is extracted, the values of the "hard" benefits are grouped under one column.
I would appreciated if you could help me with sugegsting a way to edit the extracted table in such a way, that it would eventuallly result in the second table (the valuye each hard category to be under the corresponding hard benefit column).
Kind regards,
George
Solved! Go to Solution.
@GeorgeGiannakis , one way is unpivoting, in that you will lose the second column. may you keep a copy of that?
https://radacad.com/pivot-and-unpivot-with-power-bi
Transpose : https://yodalearning.com/tutorials/power-query-helps-transposing-data/
Another way is you create calculated columns. In Dax
new column = if([col] ="Finance",[Value],blank())
Proud to be a Super User!
@GeorgeGiannakis , one way is unpivoting, in that you will lose the second column. may you keep a copy of that?
https://radacad.com/pivot-and-unpivot-with-power-bi
Transpose : https://yodalearning.com/tutorials/power-query-helps-transposing-data/
Another way is you create calculated columns. In Dax
new column = if([col] ="Finance",[Value],blank())
Proud to be a Super User!
Hello Amit,
Thank you very much for your reply, it worked just fine.
Kind regards,
George
Join us for an in-depth look at the new Power BI features and capabilities at the free Microsoft Business Applications Launch Event.
User | Count |
---|---|
450 | |
147 | |
123 | |
53 | |
52 |
User | Count |
---|---|
446 | |
129 | |
116 | |
78 | |
71 |