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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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