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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

DAX script not equal rejection

Hello,

I need your help, I've attempted to write a DAX script to match first 3 lines "HPI" within a column which meets criteria major_incident_state = "Accepted" but not equal <> "Rejected"(see below).

 

Unfortunately, my DAX version does not work i.e. not to include "Rejected".

 

Any help or suggestion is welcome.

 

Thank you in advance,

 

 

MI State = 

IF( 'MajorIncidentTickets_2022-23'[major_incident_state] = "Accepted" && 
   LEFT('MajorIncidentTickets_2022-23'[short_description],3) = "HPI" && 'MajorIncidentTickets_2022-23'[major_incident_state] <> "Rejected", 
     "HPI", "MI"
  )

 

 

1 REPLY 1
Anonymous
Not applicable

Hello,

 

try wrapping your columns in a selectedvalue, since you have to tell DAX that it needs to look at the value on every row. You then also do not need to specify to exclude "Rejected" since you are using the && operator:

 

MI State = 

IF( SELECTEDVALUE('MajorIncidentTickets_2022-23'[major_incident_state]) = "Accepted" && 
   LEFT(SELECTEDVALUE('MajorIncidentTickets_2022-23'[short_description]),3) = "HPI", 
     "HPI", "MI"
  )

 

 
Hope this was the solution.

 

 

Best Regards,

Max

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.