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
cizaguirredigi
Frequent Visitor

comparing negative values in DAX

I'm trying to calculate KPI's in PowerBi. For example we have tickets associated with a Time to resolved being 29m (Actual data) and some other tickets that have a value of -2h 30m. I'm trying to find a formula which can help me determine that if it's a positive value then it meets the kpi, otherwise if it's a negative value then it does not meet. 

1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

Try:

1) As a calculated column:

meets kpi = IF(CONTAINSSTRING(Table[TTR H:M], "-"), "Not meet", "Meet")

 

2) As a measure:

meets kpi = IF(CONTAINSSTRING(MAX(Table[TTR H:M]), "-"), "Not meet", "Meet")





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

4 REPLIES 4
PaulDBrown
Community Champion
Community Champion

Try:

1) As a calculated column:

meets kpi = IF(CONTAINSSTRING(Table[TTR H:M], "-"), "Not meet", "Meet")

 

2) As a measure:

meets kpi = IF(CONTAINSSTRING(MAX(Table[TTR H:M]), "-"), "Not meet", "Meet")





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






@PaulDBrown it worked perfectly as a Measure!!! Thank you very much for the support!!!!

ryan_mayu
Super User
Super User

@cizaguirredigi 

not sure if 'IF' function can meet your request.

IF(value>=0, "meet","not meet")

 

it's better to provide some sample data and expected output





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




I have a calumn with ticket response time (TTR) If the value is negative then the KPI is not met. 

cizaguirredigi_0-1663339289469.png

 

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.