Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

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

  • KeyurPatel14's avatar
    KeyurPatel14
    Responsive Resident

    Hii Anonymous ,
    Can you please try following measure:

    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's avatar
      Mahesh0016
      Super User

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