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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |