Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I wish to compare 3 columns of values in a table and return a True/False if they all match.
I am using the following formula:
NewColumn = Table1[Column1]=Table1[Column2] && Table1[Column1]=Table1[Column3] && Table1[Column2]=Table1[Column3]
This works if all 3 columns have a value. But i want it to ignore blanks e.g.
Column1 | Column2 | Column3 | NewColumn |
7 | 7 | 7 | TRUE |
7 | 8 | 7 | FALSE |
8 | 8 | 7 | FALSE |
7 | 7 | TRUE | |
7 | TRUE |
Solved! Go to Solution.
Hi @Anonymous
NewColumn =
(
Table1[Column1] = Table1[Column2]
|| ISBLANK ( Table1[Column1] )
|| ISBLANK ( Table1[Column2] )
)
&& (
Table1[Column1] = Table1[Column3]
|| ISBLANK ( Table1[Column1] )
|| ISBLANK ( Table1[Column3] )
)
&& (
Table1[Column2] = Table1[Column3]
|| ISBLANK ( Table1[Column2] )
|| ISBLANK ( Table1[Column3] )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
NewColumn =
(
Table1[Column1] = Table1[Column2]
|| ISBLANK ( Table1[Column1] )
|| ISBLANK ( Table1[Column2] )
)
&& (
Table1[Column1] = Table1[Column3]
|| ISBLANK ( Table1[Column1] )
|| ISBLANK ( Table1[Column3] )
)
&& (
Table1[Column2] = Table1[Column3]
|| ISBLANK ( Table1[Column2] )
|| ISBLANK ( Table1[Column3] )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Thank for the quick reply. Just checked and it works!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |