Forum Discussion
Table Measure
Hi,
Assuming Start Plan# and Start Actual# are measures, write this measure and format it as %.
Progress=[Start Plan#]/[Start Actual#]
Hope this helps.
got the error message.
the value start plan and actual are from different table. is that the reason i got the error?
- d_gosbell7 years agoSuper User
This error probably means that "Start Plan#" and "Start Actual#" are just columns and Power BI is helpfully creating implied measures to aggregate these. So if you right click on one of the two tables and choose the "New Measure..." option then enter something like the following it should work:
Progress = DIVIDE ( SUM( 'table1'[Start Plan#] ) , SUM ( 'table2'[Actual Plan# ) )
Note: you'll need to replace 'table1' and ''table2' with the actual names of your 2 tables
And I would have expected that you would want to do actual / plan so that you could say that you've reached x% of the plan...
- Anonymous7 years agoNot applicable
Hi, thanks!
it worked!! but in this case (yellow highlight)
i want to see 290% there..? is that possible?
- Ashish_Mathur7 years agoSuper User
Hi,
Try this
Progress = DIVIDE ( SUM( 'table1'[Start Plan#] ) , IF(ISBLANK(SUM ( 'table2'[Actual Plan# )),10,SUM ( 'table2'[Actual Plan# ) ))