Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Another DAX syntax help

Hi all,  I have a dax query that I want to filter the column to show all 0s and not nulls I have  table[columnname] = 0 , Not isblank (table[columnname]) but I am not getting the result expected, ...
  • v-chuncz-msft's avatar
    7 years ago

    Anonymous,

     

    You may check code below.

    Table 2 =
    FILTER (
        'table',
        'table'[columnname] = 0
            && NOT ( ISBLANK ( 'table'[columnname] ) )
    )