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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi @Anonymous ,
Solved! Go to Solution.
Hi @kkanukurthi ,
Based on my testing, please try the following methods:
1.Create the simple table.
2.Create the new column to find the last Friday current month.
last friday current month =
CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) =
MONTH(EARLIER('Table'[Date]))
&& YEAR('Table'[Date]) = YEAR(EARLIER('Table'[Date])) &&
'Table'[weekday] = 5
)
)
3.Create the new column to find the last Saturday previous month.
last saturday previous month =
var last_mon = 'Table'[Date]
var last_year = CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) =
MONTH(last_mon) - 1
&& YEAR('Table'[Date]) = YEAR(last_mon) &&
'Table'[weekday] = 6
)
)
var last_12 =
CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) = 12
&& YEAR('Table'[Date]) = YEAR(last_mon) - 1 &&
'Table'[weekday] = 6
)
)
RETURN
IF(MONTH('Table'[Date]) = 1, last_12, last_year)
4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kkanukurthi ,
Based on my testing, please try the following methods:
1.Create the simple table.
2.Create the new column to find the last Friday current month.
last friday current month =
CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) =
MONTH(EARLIER('Table'[Date]))
&& YEAR('Table'[Date]) = YEAR(EARLIER('Table'[Date])) &&
'Table'[weekday] = 5
)
)
3.Create the new column to find the last Saturday previous month.
last saturday previous month =
var last_mon = 'Table'[Date]
var last_year = CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) =
MONTH(last_mon) - 1
&& YEAR('Table'[Date]) = YEAR(last_mon) &&
'Table'[weekday] = 6
)
)
var last_12 =
CALCULATE(
MAX('Table'[Date]),
FILTER(
'Table',
MONTH('Table'[Date]) = 12
&& YEAR('Table'[Date]) = YEAR(last_mon) - 1 &&
'Table'[weekday] = 6
)
)
RETURN
IF(MONTH('Table'[Date]) = 1, last_12, last_year)
4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.