Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi this is what I want to do is count unique values based on one column before expand the table.
I need this because there are so files that should not be included from today and the most easy way to fit solution to already existing query is just unfilter some files that will have too many unique in my specific column.
Any solution how to do it?
Solved! Go to Solution.
Hi @Anonymous ,
you can add a column that counts the distinct values like so:
List.Count(List.Distinct([Transform file][<YourTableNameGoesHere>]))
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
Working thanks
Hi @Anonymous ,
you can add a column that counts the distinct values like so:
List.Count(List.Distinct([Transform file][<YourTableNameGoesHere>]))
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries