Forum Discussion
durlav1993
3 years agoFrequent Visitor
power bi
HI team, i have two column ,both value "Yes" and "No" i need to find out if both "yes" means completed, If both "Yes","No" means 'Partially", and if both "no" means Not completed, If both data Blank...
Thejeswar
Super User
3 years agoHi durlav1993 ,
You can create a Calculated Column using the below DAX to achieve this
CalcColumn = IF('Table'[Column1]= "" && 'Table'[Column2]="", "Not Updated", IF('Table'[Column1] = "Yes" && 'Table'[Column2] = "Yes", "Completed", IF('Table'[Column1] = "No" && 'Table'[Column2] = "No", "Not Completed", "Partially")))
Screenshot given below for reference