Forum Discussion
Project Conversion %
- 6 years ago
Hi thorn1831 ,
you need to create the following measures:
Feasability deliver = DIVIDE ( CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Feasibility Delivered] = TRUE () ); CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Feasibility Study] = TRUE () ) ) Feasability Study = DIVIDE ( CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Feasibility Study] = TRUE () ); CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Initial Meetings] = TRUE () ) ) Selected/ In IGA = DIVIDE ( CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Selected] = TRUE () ); CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[RFPRFQ] = TRUE () ) ) Sold/Closed = DIVIDE ( CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Contract Executed] = TRUE () ); CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Selected] = TRUE () ) ) Turned into RFP/RFQ = DIVIDE ( CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[RFPRFQ] = TRUE () ); CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Feasibility Delivered] = TRUE () ) )Format measure as % and place them on a visualization of your choice, be aware that this being a measure will calculate at the level you are on the visualization so if you add state it will show state level if there is no level (as Ihave in the PBIX file) it show full data values.
Check PBIX file attach.
Thanks MFelix,
Sorry that wasn't clear. Here's how those charts were calculated.
| Chart | Excel Formula |
| Feasibility Study | Count of Feasibility Study/ Count of Initial Meetings |
| Feasibility Delivered | Count of Feasibility Delivered/ Count of Feasibility Study |
| Turned into RFP/RFQ | Count of RFPRFQ/ Count of Feasibility Delivered |
| Selected/ In IGA | Count of Selected/ Count of RFPRFQ |
| Sold/Closed | Count of Contract Executed / Count of Selected |
And here is some sample data in table format.
| ProjectID | Initial Meetings | Feasibility Study | Feasibility Delivered | RFPRFQ | Selected | Contract Executed |
| 2 | TRUE | TRUE | TRUE | TRUE | TRUE | TRUE |
| 3 | TRUE | TRUE | TRUE | TRUE | TRUE | TRUE |
| 4 | TRUE | TRUE | TRUE | TRUE | TRUE | TRUE |
| 5 | TRUE | TRUE | TRUE | TRUE | TRUE | TRUE |
| 6 | TRUE | FALSE | TRUE | TRUE | TRUE | TRUE |
| 7 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 8 | TRUE | TRUE | TRUE | TRUE | TRUE | FALSE |
| 9 | TRUE | TRUE | TRUE | TRUE | FALSE | FALSE |
| 10 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 11 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 12 | TRUE | TRUE | TRUE | TRUE | TRUE | FALSE |
| 13 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 14 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 15 | TRUE | TRUE | TRUE | TRUE | FALSE | FALSE |
| 16 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 17 | TRUE | TRUE | TRUE | TRUE | TRUE | FALSE |
| 18 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 19 | TRUE | TRUE | TRUE | FALSE | FALSE | FALSE |
| 20 | TRUE | TRUE | FALSE | FALSE | FALSE | FALSE |
Hi thorn1831 ,
you need to create the following measures:
Feasability deliver =
DIVIDE (
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Feasibility Delivered] = TRUE ()
);
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Feasibility Study] = TRUE ()
)
)
Feasability Study =
DIVIDE (
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Feasibility Study] = TRUE ()
);
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Initial Meetings] = TRUE ()
)
)
Selected/ In IGA =
DIVIDE (
CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Selected] = TRUE () );
CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[RFPRFQ] = TRUE () )
)
Sold/Closed =
DIVIDE (
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Contract Executed] = TRUE ()
);
CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[Selected] = TRUE () )
)
Turned into RFP/RFQ =
DIVIDE (
CALCULATE ( COUNT ( Projects[ProjectID] ); Projects[RFPRFQ] = TRUE () );
CALCULATE (
COUNT ( Projects[ProjectID] );
Projects[Feasibility Delivered] = TRUE ()
)
)
Format measure as % and place them on a visualization of your choice, be aware that this being a measure will calculate at the level you are on the visualization so if you add state it will show state level if there is no level (as Ihave in the PBIX file) it show full data values.
Check PBIX file attach.