Forum Discussion

pavkey88's avatar
pavkey88
New Member
10 years ago
Solved

Create a Calculated Column from Different Data sets

I'm having a bit of a struggle with this.    I have one data set that contains productID and product unit price and another data set that contains productID and unit cost. I have them related so th...
  • SqlJason's avatar
    10 years ago

    Your syntax has to be changed to

    Measure = sum(Table1[column1]) - sum(Table2[column2])

     

    Can you try this and let me know if it is ok?