The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
24 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |