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
Anonymous
Not applicable

Day over day change

hello,

I have been stuck on this for a few days now. Could you please help me create a column to be added to the matrix to calculate the day over day change for a particular count.

 

See below. I have the dates in the column headers and counts for each of the dates below them. I want a new column to show %change of counts from previous day for each of the items in the name column. Thanks so much! 

 

sdasdasdasdas.JPG

 

 

 

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

Hi @Anonymous ,

 

One sample for your refe rence, here we can create a measure as below.

Measure = 
VAR pred =
    MAX ( [Day ] ) - 1
VAR prev =
    CALCULATE (
        SUM ( [value] ),
        FILTER ( ALL ( Table1 ), [Day ] = pred ),
        VALUES ( Table1[Name] )
    )
VAR change =
    MAX ( [value] ) - prev
VAR Per =
    DIVIDE ( change, prev, 0 )
RETURN
    IF ( prev = 0, BLANK (), Per )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

One sample for your refe rence, here we can create a measure as below.

Measure = 
VAR pred =
    MAX ( [Day ] ) - 1
VAR prev =
    CALCULATE (
        SUM ( [value] ),
        FILTER ( ALL ( Table1 ), [Day ] = pred ),
        VALUES ( Table1[Name] )
    )
VAR change =
    MAX ( [value] ) - prev
VAR Per =
    DIVIDE ( change, prev, 0 )
RETURN
    IF ( prev = 0, BLANK (), Per )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

I figured it out, except my calculation looks at day-over-day differences (not % change).

 
Followers Day over Day Change =
VAR previousWeiboday =
MAX ( Weibo[Date] ) - 1
 
VAR previousdayfollowers =
CALCULATE( SUM ( Weibo[Followers] ), Weibo[Date]=previousWeiboday)
 
VAR currentWeiboday =
max(Weibo[Date])
 
VAR currentdayfollowers =
CALCULATE(SUM(Weibo[Followers]), (Weibo[Date])=currentWeiboday)
 
RETURN
currentdayfollowers - previousdayfollowers
Anonymous
Not applicable

Hi - Thankyou so much for this. I did try this but still nt getting the anticipated results. please see below . As you can see the day over day % change is incorrect. I am wondering if its because the daily count of each of these names is not summed in the raw data. 

 

pb2.JPGpb1.JPG

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.