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
Hello all
I have a dataset similar to below.
Year | Category | # Instances |
2021 | A | 15 |
2021 | B | 15 |
2021 | C | 15 |
2022 | A | 10 |
2022 | B | 20 |
2022 | C | 30 |
2023 | A | 45 |
2023 | B | 39 |
2023 | C | 24 |
I want to be able to filter for 2023 and see something similar to the output below
Category | 2023 Instances | Total Aggregated Instances |
A | 45 | 70 |
B | 39 | 74 |
C | 24 | 69 |
Thanks in advance!
@ALGH08 , Try two measure like
M1= sum(Table[Instances])
M2= calculate( sum(Table[Instances]) , removefilters(Table[Year]))
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 |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |