Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi all,
Is there a clean measure (so without many if statements) for the following?
When a order is created Yesterday, I want them showing in my table. But on a Monday, I want to see the orders that are created Friday, Saturday and Sunday.
Can anyone help me figure out a efficient measure for this?
Table : Export
Column : Date Created
Solved! Go to Solution.
Hi @IAM ,
Monday shows orders from the previous Friday to the previous Sunday, the rest (including Saturday and Sunday) shows orders from the previous day?
Please new a measure like:
Measure =
VAR _today = TODAY()
VAR _weekday = WEEKDAY(_today,2)
VAR _order_date = SELECTEDVALUE('Table'[Date])
VAR _result =
SWITCH(
TRUE(),
_weekday=1 && _order_date>=_today-3&&_order_date<=_order_date-1,1,
_weekday<>1 && _order_date=_today-1,1
)
RETURN
_result
This metric is then used as a filter for table visuals and configured as such.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi @IAM ,
Monday shows orders from the previous Friday to the previous Sunday, the rest (including Saturday and Sunday) shows orders from the previous day?
Please new a measure like:
Measure =
VAR _today = TODAY()
VAR _weekday = WEEKDAY(_today,2)
VAR _order_date = SELECTEDVALUE('Table'[Date])
VAR _result =
SWITCH(
TRUE(),
_weekday=1 && _order_date>=_today-3&&_order_date<=_order_date-1,1,
_weekday<>1 && _order_date=_today-1,1
)
RETURN
_result
This metric is then used as a filter for table visuals and configured as such.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
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 |
---|---|
104 | |
68 | |
47 | |
42 | |
39 |