The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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! | |
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
106 | |
77 | |
71 | |
47 | |
39 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
57 |