The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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