Forum Discussion

Parihar1980's avatar
Parihar1980
Helper II
9 years ago
Solved

Where to write group by / count in this expression

 

How to write Dax expression in Power BI tabular model . Please suggest 

 

Select Count(*) , Year FROM [DBO].[Table] A
where UnitsReceived = 0
Group by Year


  • Parihar1980 wrote:

     

    How to write Dax expression in Power BI tabular model . Please suggest 

     

    Select Count(*) , Year FROM [DBO].[Table] A
    where UnitsReceived = 0
    Group by Year


    Parihar1980

    Probably you may not need any DAX expression, as you can apply the SQL logic by using a slicer and a table visual.

     

     

    Definitely you can create a calculated table with equivalent DAX.

    Table 2 =
    SUMMARIZE (
        ADDCOLUMNS (
            FILTER ( 'Table', 'Table'[UnitsReceived] = "0" ),
            "Year", YEAR ( 'Table'[Date] )
        ),
        [Year],
        "count", COUNTA ( 'Table'[UnitsReceived] )
    )

3 Replies

  • Eric_Zhang's avatar
    Eric_Zhang
    Microsoft Employee

    Parihar1980 wrote:

     

    How to write Dax expression in Power BI tabular model . Please suggest 

     

    Select Count(*) , Year FROM [DBO].[Table] A
    where UnitsReceived = 0
    Group by Year


    Parihar1980

    Probably you may not need any DAX expression, as you can apply the SQL logic by using a slicer and a table visual.

     

     

    Definitely you can create a calculated table with equivalent DAX.

    Table 2 =
    SUMMARIZE (
        ADDCOLUMNS (
            FILTER ( 'Table', 'Table'[UnitsReceived] = "0" ),
            "Year", YEAR ( 'Table'[Date] )
        ),
        [Year],
        "count", COUNTA ( 'Table'[UnitsReceived] )
    )
      • Parihar1980's avatar
        Parihar1980
        Helper II

        thanks sir 

        But I am not sure when i am writing DAX code for this expression its not working

         

        Select Count(*) ,[FLAG] FROM DimTable]
        Group by [FLAG]

         

        Kindly suggest