Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have a calculated group and one of items in Delta of Sum of Sales in percentage like
Solved! Go to Solution.
@lifeofthenoobie Hi! Create a measure on the Delta Percentage measure for the conditional formatting, like:
ColorIndicator =
VAR DeltaPercent = [DeltaPercentage]
RETURN
IF(
DeltaPercent < 0, // If percentage change is negative
"Red", // Return "Red" for negative change
"Green" // Return "Green" for positive change
)
then use this measure as field for the conditional formatting.
BBF
@lifeofthenoobie Hi! Create a measure on the Delta Percentage measure for the conditional formatting, like:
ColorIndicator =
VAR DeltaPercent = [DeltaPercentage]
RETURN
IF(
DeltaPercent < 0, // If percentage change is negative
"Red", // Return "Red" for negative change
"Green" // Return "Green" for positive change
)
then use this measure as field for the conditional formatting.
BBF
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
6 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |