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
SH-VE
Helper IV
Helper IV

Date measures

Hi All,

 

I have a table with date , quantity and customer ID.

The output table needs to have 

  1. what was shipped today
  2. shipped yesterday
  3. Week to date shipment
  4. Month to date shipment , and
  5. Year to date shipment

I used PREVIUOSDAY for yesterday, but its giving incorrect result. : 

Yest = CALCULATE(SUM('FRS Shipment measures'[Weight In Tons]),PREVIOUSDAY('FRS Shipped Date'[ShippedDate]))

How should I create seperate query for each of the five above. Or should it be a calculated colum. Please help me out, for this urgent Deliv.2021-03-02_16-18-28.png

 

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

Hi, @SH-VE 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

b1.png

 

You may create measures as below.

Today Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        [Date]=TODAY()
    )
)
Yesterday Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        [Date]=TODAY()-1
    )
)
WTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])*100+WEEKNUM([Date])=YEAR(TODAY())*100+WEEKNUM(TODAY())&&
        [Date]<=TODAY()
    )
)
MTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])*100+MONTH([Date])=YEAR(TODAY())*100+Month(TODAY())&&
        [Date]<=TODAY()
    )
)
YTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])=YEAR(TODAY())&&
        [Date]<=TODAY()
    )
)

 

Result:

b2.png

 

You may remove the calculated columns. They are created just for clear distinction. Today is 3/3/2021.

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-alq-msft
Community Support
Community Support

Hi, @SH-VE 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

b1.png

 

You may create measures as below.

Today Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        [Date]=TODAY()
    )
)
Yesterday Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        [Date]=TODAY()-1
    )
)
WTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])*100+WEEKNUM([Date])=YEAR(TODAY())*100+WEEKNUM(TODAY())&&
        [Date]<=TODAY()
    )
)
MTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])*100+MONTH([Date])=YEAR(TODAY())*100+Month(TODAY())&&
        [Date]<=TODAY()
    )
)
YTD Qty = 
CALCULATE(
    SUM('Table'[Quantity]),
    FILTER(
        ALLEXCEPT('Table','Table'[CustomerID]),
        YEAR([Date])=YEAR(TODAY())&&
        [Date]<=TODAY()
    )
)

 

Result:

b2.png

 

You may remove the calculated columns. They are created just for clear distinction. Today is 3/3/2021.

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks a lot for help!

smpa01
Super User
Super User

@SH-VE  you need a DateTbl to start with in order for DAX to perform all time intelligence calculation.

 

For now, you can do the following to return the first two

_shippedToday:= CALCULATE(SUM('Table'[Column1]),FILTER('Table','Table'[date]=TODAY()))

_shippedYesterday = CALCULATE(SUM('Table'[Column1]),FILTER('Table','Table'[date]=TODAY()-1))
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

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.

Top Solution Authors
Top Kudoed Authors