Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Non blank value in column

Hi Team, I have base table as below  Code Region Sales 123   10 123 ABC 20 456   30 456 DEF 40   I have created a Distinct value from code as below Code 123 ...
  • rusgesig's avatar
    3 years ago

    Try this:

    Region Table =
    DISTINCT(
        SELECTCOLUMNS(
            FILTER('Table','Table'[Region]<>BLANK())
            ,"Code", 'Table'[Code]
            ,"Region", 'Table'[Region]
        ))