Forum Discussion
Daniel23
3 years agoFrequent Visitor
Add same value into multiple "data groups"
Hi, I have a case, where I need to add values from a dimension table column into multiple data groups. The built-in funtion for this in Power BI does not seem to support this (you can only add 1 ...
- 3 years ago
look at the file
amitchandak
3 years agoSuper User
Daniel23 , Create a new column
Type = Switch(True() ,
[Group] in {"A", "B"} , "Prod" ,
"Serv"
)
Add that into column on Matrix visual along with group
- Daniel233 years agoFrequent Visitor
Hi amitchandak ,
Thanks for the suggestion. I dont understand how this will work though. If I add to columns in Matrix visual along with another, f.x. the group, the matrix visual will create a hierarchy display. I want to flatten it so that it is shown on the same row.