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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Filter by comparing 2 columns

I have a table with multiple columns.  I want to filter out a record if column A = column C.  I've seen many variations but not this one in the developer forum.  Any suggestions?

 

Thanks!

Jean

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Suppose you have a table as follows

A B C
aa 11 ee
bb 22 bb
cc 33 aa
dd 44 ff
gg 55 vv

2. Add a custom column to judge whether the value of A column is equal to the vlaue of C column, if yes then 1 else 0

yingyinr_0-1646632202214.png

3. Filter the records which the value of custom column is 0

yingyinr_1-1646632255471.png

4. Remove the custom column

The full applied codes as follows:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("Hcq3DQAxEAPBXhgrkavmcIF8B6r/V58MFgTN1JqCYoS15MHUO50SUG8Yg84Z+L5hTroU2PsfzqFrhXvl/gE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [A = _t, B = _t, C = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"A", type text}, {"B", Int64.Type}, {"C", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "A=C?", each if [A] = [C] then 1 else 0),
    #"Filtered Rows" = Table.SelectRows(#"Added Custom", each ([#"A=C?"] = 0)),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"A=C?"})
in
    #"Removed Columns"

yingyinr_2-1646632436274.png

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Suppose you have a table as follows

A B C
aa 11 ee
bb 22 bb
cc 33 aa
dd 44 ff
gg 55 vv

2. Add a custom column to judge whether the value of A column is equal to the vlaue of C column, if yes then 1 else 0

yingyinr_0-1646632202214.png

3. Filter the records which the value of custom column is 0

yingyinr_1-1646632255471.png

4. Remove the custom column

The full applied codes as follows:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("Hcq3DQAxEAPBXhgrkavmcIF8B6r/V58MFgTN1JqCYoS15MHUO50SUG8Yg84Z+L5hTroU2PsfzqFrhXvl/gE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [A = _t, B = _t, C = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"A", type text}, {"B", Int64.Type}, {"C", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "A=C?", each if [A] = [C] then 1 else 0),
    #"Filtered Rows" = Table.SelectRows(#"Added Custom", each ([#"A=C?"] = 0)),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"A=C?"})
in
    #"Removed Columns"

yingyinr_2-1646632436274.png

Best Regards

lbendlin
Super User
Super User

currently only possible as a calculated column or measure flag.  If this is important to you please consider raising it at https://ideas.powerbi.com

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors