Forum Discussion
Anonymous
5 years agoNot applicable
IF function not working
Hi, Can someone explain me what's wrong with this formula? Thanks
- 5 years ago
Anonymous
If you are creating a measure then, this shouldMeasure = if ( MAX(table[Due Date]) = "null", "9999", MAX(table[Resolution Date]) - MAX(table[Due Date]) )work.
- 5 years ago
So you are doing it in Power Query, this should work:
Table.AddColumn(#"Colonnes renommées13", "Major", each if [Priority] = "Major" and [Issue Type] = "Bug" then 1 else 0) - 5 years ago
Anonymous
You can add as a column to your table using DAX:Major = if ( and([Priority] = "Major" , [Issue Type] = "Bug" ) , 1 , 0)