Forum Discussion
Anonymous
4 years agoNot applicable
Help with DAX - Percent Query
Hi All, Does anyone know a DAX where I can work out the percentage of jobs complete please? =(Total Jobs - Open Jobs ) / Total Jobs *100 - Is what i use in excel. I cant seem to figure thi...
- 4 years ago
Anonymous , Assume you have two measures [Open Jobs], [Total Jobs]
Divide([Open Jobs], [Total Jobs])
Mark this a % column
Whitewater100
4 years agoSolution Sage
Hi Bidds10:
Please see attached link. https://drive.google.com/file/d/1u6etqcBzxFg5R4TRCO-qKqhz8UU_sQFv/view?usp=sharing
There is usually more than one way to do this. A lot of measure are built upon other measures, branching out.
I'm using my own made up data but should apply to yours if you change the table name and column names.
You'll see, but the measure for the % complete is:
Perc Complete = DIVIDE([Completed Jobs],[Total Jobs],0)
Incomplete Jobs = CALCULATE([Total Jobs], JobStatus[Status]="INC")
Completed Jobs = [Total Jobs] - [Incomplete Jobs]