Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I want to create a custom column (column 7) that does a count of non-null values in columns 1 to 6.
Need it as a Power Query.
Thank you!
Solved! Go to Solution.
I think you can use a similar principle. Add a custom column as
List.NonNullCount( { [Column 1], [Column 2], [Column 3] } )
I think you could create a new column like
Column 7 =
VAR TmpTable = { 'Table'[Column 1], 'Table'[Column 2], 'Table'[Column 3] }
RETURN
COUNTAX ( TmpTable, [Value] )
Thank you, that solution works for adding a column in the regular table view. But I just realised I need it as a Power Query.
I think you can use a similar principle. Add a custom column as
List.NonNullCount( { [Column 1], [Column 2], [Column 3] } )
Brilliant. Thank you very much!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
64 | |
51 | |
39 | |
26 |
User | Count |
---|---|
86 | |
55 | |
44 | |
42 | |
36 |