March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have data divided into calander weeks. I have a few identifiers and their values divided into columns of calender weeks which are created from dates and relationships with calender weeks.
Now I want to have a visual with can showthe sum of first 5 identifiers together into all calender weeks and another row with sum of last 2 identifiers together into all calender weeks.
How can I do it?
Example
Here I want sum of all values of A,B,C,D together in those seperate CW
and sum of E,F into another row seperated into CW
Solved! Go to Solution.
@red_arrowhead , Not very clear. You have to create a new column like this and use that
Switch(True(),
[identifier] in {"A","B","C", "D"} , "Cat1",
[identifier] in {"E", "F"},"Cat2"
)
@red_arrowhead , Not very clear. You have to create a new column like this and use that
Switch(True(),
[identifier] in {"A","B","C", "D"} , "Cat1",
[identifier] in {"E", "F"},"Cat2"
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
109 | |
73 | |
54 | |
52 | |
44 |
User | Count |
---|---|
157 | |
113 | |
63 | |
60 | |
50 |