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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Rotrox404
Frequent Visitor

Measure to show difference in attribute from past date to current

Hello,  

 

I have a dataset that lists out the value of 'Completed Work' on each day of the week for 'Work Item ID'.   I want to create a visualization that shows the difference in 'Completed Work' from the current date and 'Sunday' of the current week for each unique 'Work Item ID'.    I currently have the dataset filtered to show only one week's worth of Work Items, but ideally, I would be able to expand this to a monthly view and get a read out of work done on each item on a weekly basis for the whole month.  

 

 

 

Thanks in advance,

R.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @Rotrox404

 

Please try this MEASURE

 

Difference from Sunday =
VAR CompletedWorkonSunday =
    CALCULATE (
        SUM ( Table1[Completed Work] ),
        FILTER (
            ALLEXCEPT ( Table1, Table1[Work Item Id] ),
            WEEKNUM ( Table1[Date] ) = WEEKNUM ( SELECTEDVALUE ( Table1[Date] ) )
                && WEEKDAY ( Table1[Date], 1 ) = 1
        )
    )
RETURN
    SUM ( Table1[Completed Work] ) - CompletedWorkonSunday

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @Rotrox404

 

Please try this MEASURE

 

Difference from Sunday =
VAR CompletedWorkonSunday =
    CALCULATE (
        SUM ( Table1[Completed Work] ),
        FILTER (
            ALLEXCEPT ( Table1, Table1[Work Item Id] ),
            WEEKNUM ( Table1[Date] ) = WEEKNUM ( SELECTEDVALUE ( Table1[Date] ) )
                && WEEKDAY ( Table1[Date], 1 ) = 1
        )
    )
RETURN
    SUM ( Table1[Completed Work] ) - CompletedWorkonSunday

Regards
Zubair

Please try my custom visuals

Thanks, was able to use this to guide me towards the solution I needed!

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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