Forum Discussion
Anonymous
9 years agoNot applicable
is(isblank) function
i had below DAX, but its not working. i've created a new column "company", company = "No" if account have no value otherwise "yes". Company = if(ISBLANK('RER 2016'[Account]),"No", "Yes") bu...
Phil_Seamark
9 years agoMicrosoft Employee
You probably have an empty space in the column rather than a blank()
try
Company = if(ISBLANK('RER 2016'[Account]) || 'RER 2016'[Account]="" ,"No", "Yes")