Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
Thank you very much Fowmy for your prompt reply.
This is the principle of slicers. When you select a month in a slicer, it will only show data relevant to your selection.
I recommend you create a date table as a slicer, but be careful not to create a relationship between the date table and the original table.
Here's some dummy data
"Query1"
Create a Date table.
Date =
SELECTCOLUMNS(
'Query1',
"Date",
'Query1'[SetupDate],
"Year",
'Query1'[SetupDate].[Year],
"Month",
'Query1'[SetupDate].[MonthNo]
)
Select Year and Month from the Date table as slicers.
Create a measure.
PreviousMonthCount =
VAR SelectYear = SELECTEDVALUE('Date'[Year])
VAR SelectMonth = SELECTEDVALUE('Date'[Month])
VAR PreviousMonthDate = EOMONTH(DATE(SelectYear, SelectMonth, 1), -1)
RETURN
CALCULATE(
SUM(Query1[NewCount]),
FILTER(
ALL('Query1'),
MONTH('Query1'[SetupDate]) = MONTH(PreviousMonthDate)
&&
YEAR('Query1'[SetupDate]) = YEAR(PreviousMonthDate)
&&
'Query1'[SetupDate] <= PreviousMonthDate
)
)
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you very much Fowmy for your prompt reply.
This is the principle of slicers. When you select a month in a slicer, it will only show data relevant to your selection.
I recommend you create a date table as a slicer, but be careful not to create a relationship between the date table and the original table.
Here's some dummy data
"Query1"
Create a Date table.
Date =
SELECTCOLUMNS(
'Query1',
"Date",
'Query1'[SetupDate],
"Year",
'Query1'[SetupDate].[Year],
"Month",
'Query1'[SetupDate].[MonthNo]
)
Select Year and Month from the Date table as slicers.
Create a measure.
PreviousMonthCount =
VAR SelectYear = SELECTEDVALUE('Date'[Year])
VAR SelectMonth = SELECTEDVALUE('Date'[Month])
VAR PreviousMonthDate = EOMONTH(DATE(SelectYear, SelectMonth, 1), -1)
RETURN
CALCULATE(
SUM(Query1[NewCount]),
FILTER(
ALL('Query1'),
MONTH('Query1'[SetupDate]) = MONTH(PreviousMonthDate)
&&
YEAR('Query1'[SetupDate]) = YEAR(PreviousMonthDate)
&&
'Query1'[SetupDate] <= PreviousMonthDate
)
)
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Fowmy What should be the query for CurrentMonth Last Year based on slicer selection?
@homelander123
Try this:
CurrentMonthLastYearCount =
VAR SelectedMonth = MAX(Query1[SetupDate])
VAR LastYearSameMonthStart = EOMONTH(SelectedMonth, -12) + 1
VAR LastYearSameMonthEnd = EOMONTH(SelectedMonth, -12)
RETURN
CALCULATE(
SUM(Query1[NewCount]),
Query1[SetupDate] >= LastYearSameMonthStart && Query1[SetupDate] <= LastYearSameMonthEnd
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
PreviousMonthCount =
VAR SelectedMonth = MAX(Query1[SetupDate])
RETURN
CALCULATE(
SUM(Query1[NewCount]),
Query1[SetupDate] >= EOMONTH(SelectedMonth, -2) + 1 && Query1[SetupDate] <= EOMONTH(SelectedMonth, -1)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 10 | |
| 8 |