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.
I have a bunch of monthly reports example current Employee count or current stock.
when I showed them in a chart at monthly level ( no issue)
at year level (it should show the value for December, PBI "SUM" the values which is wrong,)
I tried
count for December =
CALCULATE(
SUM('data'[count]),
'data'[Date].[Month] IN { "December" },
ALL('data'[Date].[MonthNo])
)
at year level ( worked fine )
at month level (it should show the value for December for all months)
help 😅
@omar8000 , it better to have month column for this
like
count for December =
CALCULATE(
SUM('data'[count]),
'data'[Month] = "December"
)
or
count for December =
CALCULATE(
SUM('data'[count]),
'data'[Date].[Month] = "December" ,
ALL('data'[Date])
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |