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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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