Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |