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 All,
I need below tabluea calculated filed to be converted into Power Bi which will be used for color
Solved! Go to Solution.
Try this measure
Color Classification =
VAR CalculatedParameter = [Calculated Parameter]
VAR FirstValue = CALCULATE([Calculated Parameter], FIRSTNONBLANK('Table'[Column], 1))
RETURN
IF (
ISBLANK(CalculatedParameter) || CalculatedParameter = 0,
"No Qty in Scenario",
IF (
CalculatedParameter = FirstValue,
"Qty = Column value in text from a table",
IF (
CalculatedParameter > FirstValue,
"Qty > Column value in text from a table",
"Qty < Column value in text from a table"
)
)
)
Try this measure
Color Classification =
VAR CalculatedParameter = [Calculated Parameter]
VAR FirstValue = CALCULATE([Calculated Parameter], FIRSTNONBLANK('Table'[Column], 1))
RETURN
IF (
ISBLANK(CalculatedParameter) || CalculatedParameter = 0,
"No Qty in Scenario",
IF (
CalculatedParameter = FirstValue,
"Qty = Column value in text from a table",
IF (
CalculatedParameter > FirstValue,
"Qty > Column value in text from a table",
"Qty < Column value in text from a table"
)
)
)
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 |
---|---|
101 | |
66 | |
48 | |
39 | |
32 |
User | Count |
---|---|
166 | |
117 | |
61 | |
58 | |
42 |