Created
July 11, 2022 08:49
-
-
Save lars-erik/36578a7a8a932c2e8e36cc2b598c3537 to your computer and use it in GitHub Desktop.
Power Query Coalesce
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
let | |
Coalesce = (items as list) => | |
let | |
listOfFirst = List.FirstN(List.Select(items, each _ <> "" and _ <> null), 1), | |
first = try List.Single(#"listOfFirst") otherwise null | |
in | |
first | |
in | |
Coalesce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment