Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Toby001
Regular Visitor

Create simple DAX measure ..

Dear community,
Being a power bi beginner, I am struggling to setup a very simple DAX measure to define 2 icons.
iconMeasure = SWITCH(TRUE(),[SPI]>1,"TriangleHigh","TriangleLow")
SPI is a standard decimal column within a table.
It gives me the error:
The value of SPI could not be evaluated. Either the column doesn't exist or for this column no actual row exists
I appreciate your ideas.
Best Toby
1 ACCEPTED SOLUTION
smpa01
Super User
Super User

 can you try. You need to pass on scalar value and not a column in SWITCH

SWITCH(TRUE(), MAX(tbl[SPI])....)
or
SWITCH(TRUE(), CALCULATE(MAX(tbl[SPI]))....)

@Toby001

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

2 REPLIES 2
HotChilli
Super User
Super User

IF there's only 1 case in the SWITCH, use an IF statement.

I think this will give you a clearer error message.

smpa01
Super User
Super User

 can you try. You need to pass on scalar value and not a column in SWITCH

SWITCH(TRUE(), MAX(tbl[SPI])....)
or
SWITCH(TRUE(), CALCULATE(MAX(tbl[SPI]))....)

@Toby001

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors