Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Solved! Go to Solution.
@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
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 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
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] ) )
thanks a lot
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
6 | |
6 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
3 |