Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
Solved! Go to Solution.
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.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
69 | |
45 | |
39 | |
33 |
User | Count |
---|---|
158 | |
102 | |
60 | |
43 | |
40 |