Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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