Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi @v-nuoc-msft ,
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 @v-jialongy-msft ,
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.
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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
103 | |
63 | |
44 | |
37 | |
35 |