Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi community,
I need calculate a measure with sum the column "Value" over the date filtered, if the Flag = B. I will use this measure in a table vision. For exemplify, I will use this datas:
Date | Flag | Item | Group | Subgroup | Value |
jan/20 | A | 0001 | GROUP1 | SG1 | 10 |
jan/20 | A | 0002 | GROUP1 | SG1 | 20 |
jan/20 | B | 0001 | GROUP1 | SG1 | 15 |
jan/20 | B | 0002 | GROUP1 | SG1 | 22 |
feb/20 | A | 0001 | GROUP1 | SG1 | 18 |
feb/20 | B | 0002 | GROUP1 | SG1 | 13 |
feb/20 | B | 0001 | GROUP1 | SG1 | 30 |
mar/20 | A | 0001 | GROUP1 | SG1 | 30 |
mar/20 | A | 0002 | GROUP1 | SG1 | 21 |
mar/20 | B | 0001 | GROUP1 | SG1 | 19 |
If I filter in slice the dates jan/20 and feb/20, I need the result bellow in the table visual:
Date | Flag | Item | Group | Subgroup | Value | NewValue |
jan/20 | A | 0001 | GROUP1 | SG1 | 10 | 80 |
jan/20 | A | 0002 | GROUP1 | SG1 | 20 | 80 |
jan/20 | B | 0001 | GROUP1 | SG1 | 15 | 80 |
jan/20 | B | 0002 | GROUP1 | SG1 | 22 | 80 |
feb/20 | A | 0001 | GROUP1 | SG1 | 18 | 80 |
feb/20 | B | 0002 | GROUP1 | SG1 | 13 | 80 |
feb/20 | B | 0001 | GROUP1 | SG1 | 30 | 80 |
Just explaining, the value is 80 because the lines with flag B in this filtered period has the values: 15 + 22 + 13 + 30. If I filter jan/20 to mar/20 the new value will be 99 and the lines of mar/20 must appear in table.
Anyone help me in this case?
Tks!! 🙂
Please try this measure expression
Total B Flags =
CALCULATE (
SUM ( 'Table'[Value] ),
ALLSELECTED ( 'Table' ),
'Table'[Flag] = "B"
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
something like this:
var f = selectedvalue(flag)
return calculate (sum(value),filter(allselected(),f="B"))
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
30 | |
13 | |
11 | |
9 | |
6 |