Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Good Evening
Hope you are well
I have a date period slicer on my PBIX and i need to add two more values.
1. This week
2. last week.
Below is a picture of ny current visual
i have used the below dax as a measure
Solved! Go to Solution.
@ianboothman84 here is an example on how you can add this and prev week:
Date Period =
VAR __today = TODAY()
VAR __thisWeek =
CALENDAR (
__today - ( WEEKDAY( __today ) - 1 ),
__today + 7 - ( WEEKDAY ( __today ) )
)
VAR __prevWeek =
CALENDAR (
MINX ( __thisWeek, [Date] ) - 7,
MAXX ( __thisWeek, [Date] ) - 7
)
RETURN
UNION (
ADDCOLUMNS (
{ __today },
"Type", "Today",
"Order", 1
),
ADDCOLUMNS (
{ __today - 1 },
"Type", "Yesterday",
"Order", 2
),
ADDCOLUMNS (
__thisWeek,
"Type", "This Week",
"Order", 3
),
ADDCOLUMNS (
__prevWeek,
"Type", "Prev Week",
"Order", 4
)
)
✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@ianboothman84 here is an example on how you can add this and prev week:
Date Period =
VAR __today = TODAY()
VAR __thisWeek =
CALENDAR (
__today - ( WEEKDAY( __today ) - 1 ),
__today + 7 - ( WEEKDAY ( __today ) )
)
VAR __prevWeek =
CALENDAR (
MINX ( __thisWeek, [Date] ) - 7,
MAXX ( __thisWeek, [Date] ) - 7
)
RETURN
UNION (
ADDCOLUMNS (
{ __today },
"Type", "Today",
"Order", 1
),
ADDCOLUMNS (
{ __today - 1 },
"Type", "Yesterday",
"Order", 2
),
ADDCOLUMNS (
__thisWeek,
"Type", "This Week",
"Order", 3
),
ADDCOLUMNS (
__prevWeek,
"Type", "Prev Week",
"Order", 4
)
)
✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
hi @parry2k
i have just used my report and filtered to This month, its returning no data as it thinks we are already in October. From the above code, can you see the reason why?
last month only returns 1/9/21
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
103 | |
87 | |
35 | |
35 |
User | Count |
---|---|
152 | |
99 | |
83 | |
63 | |
54 |