Forum Discussion
Profile Completeness Percentage
- 5 years ago
Hi avulasandeep ,
Try the following formula:
% of Profile = 1-DIVIDE( CALCULATE( COUNTROWS('Employee Unpivot data'), FILTER( 'Employee Unpivot data', 'Employee Unpivot data'[Value] in { 0, BLANK(), "NA" } ) ), COUNT('Employee Unpivot data'[Employees]) )Create another measure, and then apply it in the Data colors of the bar chart.
color = Switch( TRUE() , [% of Profile]=1 , "Green", [% of Profile] <.75 , "red", [% of Profile] <.99 , "Yellow" )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 5 years ago
Thanks v-kkf-msft it is working
avulasandeep , You can create a color measure based on %
Example
Switch( True() ,
[Percent] =1 , "Green"
[percent] <.75 , "red",
[percent] <.99 , "Yellow"
)
Use that in conditional formatting with the field value option
refer my video on that https://www.youtube.com/watch?v=RqBb5eBf_I4
Hi amitchandak ,
Actually it is not regarding color coding .it is regarding Profile percentage completion in Percentage ...need the profile completion percentage of each employee whether the profile completion was completed or not ....if completed how much completed with all rows for respective employee then he /she completed 100% and if not How much % not completed?
Need Profile Completion Percentage....if possible please let me know the formula for each employee profile percentage.
Need:
1.Profile completion Percetage % per employee
2.Percentage range ie.,
0% - 74%, 75%-99%,100%
Thanks in advance
sandeep
- v-kkf-msft5 years agoCommunity Support
Hi avulasandeep ,
Try the following formula:
% of Profile = 1-DIVIDE( CALCULATE( COUNTROWS('Employee Unpivot data'), FILTER( 'Employee Unpivot data', 'Employee Unpivot data'[Value] in { 0, BLANK(), "NA" } ) ), COUNT('Employee Unpivot data'[Employees]) )Create another measure, and then apply it in the Data colors of the bar chart.
color = Switch( TRUE() , [% of Profile]=1 , "Green", [% of Profile] <.75 , "red", [% of Profile] <.99 , "Yellow" )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.