Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Dear all,
I have a set of data that has to be evaluated taking in account the previous month.
I am presenting a mock dataset (normal month/value columns) and the desired output.
I need a measure that for each month it evaluates itself PLUS a function of the previous month.
I can't manage this situation as the filters block me to evaluate the previous months.
I appreciate your help,
V
Solved! Go to Solution.
Hi @Anonymous ,
As the screenshot you shared, we should convert the month column from text to number by creating a calculated column.
MonthNumber =
SWITCH (
'Dataset'[Month],
"January", 1,
"February", 2,
"March", 3,
"April", 4,
"May", 5,
"June", 6,
"July", 7,
"August", 8,
"September", 9,
"October", 10,
"November", 11,
"December", 12
)
Then we can create the following measure to meet what you need.
CurrentMonth = SUM ( 'Dataset'[Value] )
NextMonth/2 =
FORMAT (
CALCULATE (
SUM ( 'Dataset'[Value] ),
FILTER (
ALL ( 'Dataset' ),
'Dataset'[MonthNumber]
= SELECTEDVALUE ( 'Dataset'[MonthNumber] ) + 1
)
) / 2,
"General Number"
)
Total = IFERROR ( [CurrentMonth] - [NextMonth/2], BLANK () )
BTW, pbix as attached.
Hi @Anonymous ,
As the screenshot you shared, we should convert the month column from text to number by creating a calculated column.
MonthNumber =
SWITCH (
'Dataset'[Month],
"January", 1,
"February", 2,
"March", 3,
"April", 4,
"May", 5,
"June", 6,
"July", 7,
"August", 8,
"September", 9,
"October", 10,
"November", 11,
"December", 12
)
Then we can create the following measure to meet what you need.
CurrentMonth = SUM ( 'Dataset'[Value] )
NextMonth/2 =
FORMAT (
CALCULATE (
SUM ( 'Dataset'[Value] ),
FILTER (
ALL ( 'Dataset' ),
'Dataset'[MonthNumber]
= SELECTEDVALUE ( 'Dataset'[MonthNumber] ) + 1
)
) / 2,
"General Number"
)
Total = IFERROR ( [CurrentMonth] - [NextMonth/2], BLANK () )
BTW, pbix as attached.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!