Forum Discussion
adityavighne
Continued Contributor
6 years agoAdd target column to calculated table
Hi, I have calculated column and I want to add target for that and get difference value. How can I do this. Name,Open,Close and total is calculated table and Target, Difeerence column I want ...
Ashish_Mathur
Super User
6 years agoHi,
Create a seperate 2 column Table with Names in column A and targets in column B. Create a relationship from the Names in your existing table to the Names in the new 2 column table. In your existing table, write these calculated column formulas:
Targets = related(table1[Target])
Difference = [targets]-[total]
Hope this helps.