Forum Discussion
Anonymous
4 years agoNot applicable
Target vs actuals month basis
Hello I'm trying to do some visuals for some projects I'm working on, where I have a Target for the project which is static, and a monthly update of what has been invoiced. So far I've adde...
- 4 years ago
Anonymous , Make sure both table are joined to common project table. No need to join target to date table
remaining example
sumx(project, calculate(Sum(Invoice[Amount]) - Sum(Target[Amount]) ) )
or
sumx(values(project[project]) , calculate(Sum(Invoice[Amount]) - Sum(Target[Amount]) ) )
amitchandak
Super User
4 years agoAnonymous , Make sure both table are joined to common project table. No need to join target to date table
remaining example
sumx(project, calculate(Sum(Invoice[Amount]) - Sum(Target[Amount]) ) )
or
sumx(values(project[project]) , calculate(Sum(Invoice[Amount]) - Sum(Target[Amount]) ) )