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
arvindyadav
Post Partisan
Post Partisan

How to find 20% increase and 20% decrease in yesterdays and day before yesterdays date

Hi Team,

 

How to find a 20% increase and a 20% decrease in yesterdays and day before yesterdays data In Power BI desktop.

If 20% Increase then displays any text or color and vice-versa.

 

Thanks,

Arvind

 

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

@arvindyadav ,

 

You can create a measure like pattern below and drag the measure to the card visual:

Result =
VAR yesterdays_value =
    CALCULATE (
        MAX ( Table[Value] ),
        FILTER ( Table, Table[Value] = TODAY () - 1 )
    )
VAR day_before_yesterday =
    CALCULATE (
        MAX ( Table[Value] ),
        FILTER ( Table, Table[Value] = TODAY () - 2 )
    )
RETURN
    IF (
        yesterdays_value - day_before_yesterday / day_before_yesterday > 0.2,
        "Text",
        BLANK ()
    )

Community Support Team _ Jimmy Tao

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

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@arvindyadav ,

 

You can create a measure like pattern below and drag the measure to the card visual:

Result =
VAR yesterdays_value =
    CALCULATE (
        MAX ( Table[Value] ),
        FILTER ( Table, Table[Value] = TODAY () - 1 )
    )
VAR day_before_yesterday =
    CALCULATE (
        MAX ( Table[Value] ),
        FILTER ( Table, Table[Value] = TODAY () - 2 )
    )
RETURN
    IF (
        yesterdays_value - day_before_yesterday / day_before_yesterday > 0.2,
        "Text",
        BLANK ()
    )

Community Support Team _ Jimmy Tao

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

 

rocky09
Solution Sage
Solution Sage

Check this Article.

Link

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.

April Fabric Community Update

Fabric Community Update - April 2024

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