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
darylmc
Frequent Visitor

Measure - same day last week per column

Hi All,

 

I'm looking to create a measure for availability for the same day last week. I've created the following formula which mostly works

 

LW Avail = calculate(Divide(Sum(History[avail_sum]),Sum(History[avail_count]),""),filter(all
(History),History[Date]=MAX(History[Date])-7),FILTER(All(History),History[Store]=MAX(History[Store])),FILTER(All(History),History[Product]=MAX(History[Product])))
 
However, as per the formula, the total per store is taking the number of one of the Products.
 
So it's giving this:
 
ShopProductAvail
AA24%
 B50%
 C76%
 Total24%
BA12%
 B20%
 C28%
 Total

12%

 

When I would expect something like this:

 

ShopProductAvail
AA24%
 B50%
 C76%
 Total50%
BA12%
 B20%
 C28%
 Total20%

 

Any help appreciated,

 

Thanks

1 ACCEPTED SOLUTION
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @darylmc ,

 

you could write your measure like this:

LW Avail =
VAR _product =
    CALCULATE ( SELECTEDVALUE ( History[Product] ) )
VAR _date =
    CALCULATE ( MAX ( History[Date] ) )
VAR _store =
    CALCULATE ( SELECTEDVALUE ( History[Store] ) )
RETURN
    IF (
        HASONEVALUE ( History[Product] ),
        CALCULATE (
            DIVIDE ( SUM ( History[avail_sum] ), SUM ( History[avail_count] ), "" ),
            FILTER (
                ALL ( History ),
                History[Date] = _date - 7
                    && History[Store] = _store
                    && History[Product] = _product
            )
        ),
        CALCULATE (
            DIVIDE ( SUM ( History[avail_sum] ), SUM ( History[avail_count] ), "" ),
            FILTER ( ALL ( History ), History[Date] = _date - 7 && History[Store] = _store )
        )
    )

 

Cheers,
Sturla

View solution in original post

3 REPLIES 3
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @darylmc ,

 

you could write your measure like this:

LW Avail =
VAR _product =
    CALCULATE ( SELECTEDVALUE ( History[Product] ) )
VAR _date =
    CALCULATE ( MAX ( History[Date] ) )
VAR _store =
    CALCULATE ( SELECTEDVALUE ( History[Store] ) )
RETURN
    IF (
        HASONEVALUE ( History[Product] ),
        CALCULATE (
            DIVIDE ( SUM ( History[avail_sum] ), SUM ( History[avail_count] ), "" ),
            FILTER (
                ALL ( History ),
                History[Date] = _date - 7
                    && History[Store] = _store
                    && History[Product] = _product
            )
        ),
        CALCULATE (
            DIVIDE ( SUM ( History[avail_sum] ), SUM ( History[avail_count] ), "" ),
            FILTER ( ALL ( History ), History[Date] = _date - 7 && History[Store] = _store )
        )
    )

 

Cheers,
Sturla

Works like a charm!

 

Thanks

amitchandak
Super User
Super User

Try to create a new measure like

averagex(summarize(table,table[shop],table[Product],"_avg",[LW Avail]),_avg)

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

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.