Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Condition BlankValue Compare Contains Value

Hi.

I want to create a Custom Column in Power Query where if column is null and the other column contains information (any data) it says FALSE.

And another condition if both columns have data it says YES.

 

In this particular case I don't want to specify the amount on the cell that contains data.

 

See below:

 

IDDEBITCREDITEXPECTED RETURN
1001null1FALSE
10022nullFALSE
1003null2FALSE
1004null2FALSE
100512TRUE 
100621TRUE
1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi @Anonymous , 

You could try below M code to see whether it work or not.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQwMFTSUcorzckBUoZKsTpgMSMgxwgmDhUzRqgzgomZYBEzBRuEJGAGNQxoeiwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, DEBIT = _t, CREDIT = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"DEBIT", Int64.Type}, {"CREDIT", Int64.Type}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"ID"}, "Attribute", "Value"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Columns", {"ID"}, {{"Count", each Table.RowCount(_), type number}, {"all", each _, type table [ID=number, Attribute=text, Value=number]}}),
    Custom1 = Table.ReplaceValue( #"Grouped Rows",each [Count], each if [Count]>1 then "True" else "False", Replacer.ReplaceValue, {"Count"}),
    #"Expanded all" = Table.ExpandTableColumn(Custom1, "all", {"Attribute", "Value"}, {"Attribute", "Value"}),
    #"Pivoted Column" = Table.Pivot(#"Expanded all", List.Distinct(#"Expanded all"[Attribute]), "Attribute", "Value", List.Sum)
in
    #"Pivoted Column"

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

if [DEBIT] = null OR [CREDIT] = null then false else true

 

?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Hi Greg! Thanks for your response.

 

But in my scenario I won't have nulls values in the same row for both columns.

 

I want to put a condition that if COLUMN A contains data and COLUMN B contains data then TRUE. Else would be false because on either columns a null value is displayed.

 

Hope that is clear! but thanks anyway 🙂

dax
Community Support
Community Support

Hi @Anonymous , 

You could try below M code to see whether it work or not.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQwMFTSUcorzckBUoZKsTpgMSMgxwgmDhUzRqgzgomZYBEzBRuEJGAGNQxoeiwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, DEBIT = _t, CREDIT = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"DEBIT", Int64.Type}, {"CREDIT", Int64.Type}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"ID"}, "Attribute", "Value"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Columns", {"ID"}, {{"Count", each Table.RowCount(_), type number}, {"all", each _, type table [ID=number, Attribute=text, Value=number]}}),
    Custom1 = Table.ReplaceValue( #"Grouped Rows",each [Count], each if [Count]>1 then "True" else "False", Replacer.ReplaceValue, {"Count"}),
    #"Expanded all" = Table.ExpandTableColumn(Custom1, "all", {"Attribute", "Value"}, {"Attribute", "Value"}),
    #"Pivoted Column" = Table.Pivot(#"Expanded all", List.Distinct(#"Expanded all"[Attribute]), "Attribute", "Value", List.Sum)
in
    #"Pivoted Column"

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.