The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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