Forum Discussion

pxg08680's avatar
pxg08680
Icon for Resolver III rankResolver III
9 years ago
Solved

compare columns in two tables with same column names

Hi Everyone,                     I have two tables A&B and have a column which is same in both the tables. I would like to compare the two columns and see if there is any difference between them and...
  • v-ljerr-msft's avatar
    v-ljerr-msft
    9 years ago

    Hi pxg08680,

     

    According to your description above, you should be able to use the formula below to create a new measure and show it on the report to get the actual difference. :smileyhappy:

     

    Diff =
    SUM ( CommercialBuyIntentVisits[MetricValue] )
        - SUM ( CubeData[CommercialBuyIntentVisits] )

     

    Regards