Forum Discussion
adityavighne
6 years agoContinued Contributor
Add 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
6 years agoSuper User
Hi,
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.