I want to profile every single data table I have in my Power BI report. By data profile I mean something like this:
Are there ways to make a data profile view in Power BI? DAX measure or calculated columns?
Alternatively, you can also recommend other data quality tools that can handle such tasks since I find it a bit difficult to achieve this result in Power BI.
In the query editor, you can use the Table.Profile function on any table.
You can do multiple ones simultaneously like this:
Edit:
To see the profile, create a new Blank Query and define it as
= Table.Profile(Table1)
. If you open the Advanced Editor, the M code looks like this: