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
Hi @Anonymous ,
Solved! Go to Solution.
Hi @kkanukurthi
I have made some small changes to the dax:
Date = CALENDAR(DATE(2023,1,1),DATE(2025,12,31))
Weekday = WEEKDAY('Date'[Date], 2)
Column 2 =
CALCULATE(
MAX('Date'[Date]),
FILTER(
'Date',
YEAR('Date'[Date])=
YEAR(EARLIER('Date'[Date]))
&&
MONTH('Date'[Date]) =
MONTH(EARLIER('Date'[Date]))
&&
'Date'[weekday] = 5
)
)
Column 1 = IF(MONTH('Date'[Date])=1,BLANK(),
CALCULATE(
SELECTEDVALUE('Date'[Column 2]) + 1,
FILTER(
ALL('Date'),
MONTH('Date'[Column 2])= MONTH(EARLIER('Date'[Column 2])) - 1&&YEAR('Date'[Date])=
YEAR(EARLIER('Date'[Date]))
)
)
)
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Thankyou very much for the soulution provided. It was very near to the expected result. but December Saturday dates are missing for all 3 years as shown below. Please check the dax code and help me.
Thankyou
Hi @kkanukurthi
I have modified the DAX of column1:
Column 1 = IF(MONTH('Date'[Date])=1,CALCULATE(
MAX('Date'[Date]),
FILTER(
'Date',
YEAR('Date'[Date])=
YEAR(EARLIER('Date'[Date]))-1
&&
MONTH('Date'[Date]) = 12
&&
'Date'[weekday] = 6
)
),
CALCULATE(
SELECTEDVALUE('Date'[Column 2]) + 1,
FILTER(
ALL('Date'),
MONTH('Date'[Column 2])= MONTH(EARLIER('Date'[Column 2])) - 1&&YEAR('Date'[Date])=
YEAR(EARLIER('Date'[Date]))
)
)
)
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thankyou @Anonymous. It is perfect now
Hi @kkanukurthi - If you need to adjust for past and future dates, make sure the DateTable covers all the necessary dates, and the calculations will automatically adapt based on the current date.
In above solution thread as observed Date Table is created for some period
Date Table = CALENDAR("4/1/2024", "8/31/2024")
As per your question, "Can you please help me with Dax code for dates between 01/01/2023 to 31/12/2025."
Create a calculated Table for Data and mark it as Date in your model .
DateTable =
ADDCOLUMNS(
CALENDAR(DATE(2023, 1, 1), DATE(2025, 12, 31)),
"Year", YEAR([Date]),
"Month", MONTH([Date]),
"Day", DAY([Date]),
"Weekday", WEEKDAY([Date], 2) -- 2 makes Monday = 1, Sunday = 7
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
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!