Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi,
Need to create a table from existing table by group by function with min value doesn't include zero on that. I have use the below dax for that
Regards,
Solved! Go to Solution.
Hey @KrithikaBaskar ,
this DAX statements creates a table without zeros
Min Table =
FILTER(
ADDCOLUMNS(
SUMMARIZE(
'Table'
, 'Table'[Country]
, 'Table'[Category]
, 'Table'[Colour]
)
, "Min Price", CALCULATE( MIN( 'Table'[Price per kg] ) )
)
, [Min Price] <> 0
)
Hopefully, this is what you are looking for. If not provide sample data and the expected result.
Regards,
Tom
Hey @KrithikaBaskar
use this DAX statement to create the table:
Min Table =
ADDCOLUMNS(
SUMMARIZE(
'Table'
, 'Table'[Country]
, 'Table'[Category]
, 'Table'[Colour]
)
, "Min Price", CALCULATE( MIN( 'Table'[Price per kg] ) )
)
This is how my base table looks:
And this is how the table looks like that is created from the above DAX statement:
Hopefully, this is providing what you are looking for.
Regards,
Tom
Hi Tom,
Thank you for the reply.. I am expecting one more condition in this dax like removing zero values also
Thanks,
Krithika
Hey @KrithikaBaskar ,
this DAX statements creates a table without zeros
Min Table =
FILTER(
ADDCOLUMNS(
SUMMARIZE(
'Table'
, 'Table'[Country]
, 'Table'[Category]
, 'Table'[Colour]
)
, "Min Price", CALCULATE( MIN( 'Table'[Price per kg] ) )
)
, [Min Price] <> 0
)
Hopefully, this is what you are looking for. If not provide sample data and the expected result.
Regards,
Tom
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 38 | |
| 31 | |
| 27 |