Created
January 26, 2025 11:18
-
-
Save m-dekorte/eb2bb9947b57c8a68c88e64436047340 to your computer and use it in GitHub Desktop.
profileWithErrorCount M function | Creates a table profile with statistics, including an error count for all columns.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(t as table) as table => | |
Table.Profile(t, | |
{{ | |
"ErrorCount", | |
each true, | |
each Table.RowCount(Table.SelectRowsWithErrors(Table.FromColumns({_}))) | |
}} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment