Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
avulasandeep
Helper III
Helper III

Profile Completeness Percentage

HI PowerBI Experts,

 

i have one issue ....need to find the  Percentage of Profile Completeness for each employee 

Here i have attached  sample report with data   

in this report if the profile completes all rows it has to show 100%  and if Profile having  blanks or 0 or null or NA(not available) it will be less than 100% . This percentage range colors has to show in color coding as below
if Profile completeness show 100% ,"Green"
if Profile completeness show 75%  to 99%,"Yellow"

if Profile completeness show 0%  to 75%,"Red"

for this color coing i need range of Percentage as above.

So finally i need percentage of profile completeness as per range for each employee
example:
Person2 has only  100 % completeness  profile then for Person 2 it  has to show 100% and Green color


Need:
1.Profile completion Percetage % per employee
2.Percentage range ie.,
   0% - 74%, 75%-99%,100%

 

Please find the below link for file.



https://drive.google.com/drive/folders/1sbp5oBTpFFXX1eah0THC8ql1BKZsegdU?usp=sharing

Download for File/excel 


 

 

Thanks in Advance 

Sandeepavula

2 ACCEPTED SOLUTIONS

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"
)

image.png

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,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

avulasandeep
Helper III
Helper III

4 REPLIES 4
avulasandeep
Helper III
Helper III

Thanks @v-kkf-msft  it is working

amitchandak
Super User
Super User

@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

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"
)

image.png

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,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.