Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
IAM
Helper III
Helper III

Measure to highlight created Yesterday, but 3 days on Monday

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

1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

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.

vcgaomsft_0-1675840142719.png

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

View solution in original post

1 REPLY 1
v-cgao-msft
Community Support
Community Support

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.

vcgaomsft_0-1675840142719.png

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

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors