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

Join 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.

Reply
Anonymous
Not applicable

compare two columns

I have Global POL table, trying to Compare the two column  CBL and CBL LOCAL  .If both column value same its return  true. if values not match and both column blank its return False. i have tired the below measure . 

 

True/False =
IF (
    'Global POL'[CBL]= 'Global POL'[CBL Local],
    "True",
   "False"
   
)

 

INPUT :

 

   ID                  CBL                                                  CBL LOCAL 

  122         MS14-CA04CAS002                     MS14-CA04CAS002

  123        MS14-CA04CAS004                     MS14-CA04CAS004 

  124        MS14-CA04CAS004                     MS14-CA04CAS002 

  125

 

EXPECTED OUTPUT:

 

   ID                  CBL                                                  CBL LOCAL                         TRUE/FALSE

  122         MS14-CA04CAS002                     MS14-CA04CAS002                          TRUE 

  123        MS14-CA04CAS004                     MS14-CA04CAS004                           TRUE 

  124        MS14-CA04CAS004                     MS14-CA04CAS002                           FALSE

  125                                                                                                                        FALSE

5 REPLIES 5
KeyurPatel14
Responsive Resident
Responsive Resident

Hii @Anonymous ,
Please enter below formula:

KeyurPatel14_0-1674022700451.png

 

KeyurPatel14
Responsive Resident
Responsive Resident

Hii @Anonymous ,
Please try below formula:

KeyurPatel14_0-1674022486742.png

 

KeyurPatel14
Responsive Resident
Responsive Resident

Hii @Anonymous ,
Can you please try following measure:

KeyurPatel14_0-1674021297665.png

I have taken this as a sample data so apply this formula to your data and if this helps you then accpet this as a solution and give a thumbs up.

Mahesh0016_0-1674022984295.png

Compare =
 IF (
    Compare[CBL            ]=Compare[Column1] && AND(Compare[CBL            ]<>BLANK() , Compare[Column1]<>BLANK()),
    "True",
   "False"
   
)

 

Anonymous
Not applicable

@KeyurPatel14  if both column blank its also False 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.