So who is up for an Excel challenge?
Shelly, who is an HR Manager sent this distress call last week,
First off, I LOVE your site. It is the first place I go for any excel question and I love the daily emails. I’m not sure if you answer direct emails, but I’m begging you to at least read this and let me know if I’m crazy or not (good thing you don’t know me personally :>). I’ve searched through you ‘ask an excel’ blog and I have not come close to anything I’m trying to accomplish. I’ll do my best to explain it.
I have a group of employees- lets say 100 employees.
Each employee has a performance rating attached to them.
I want to divide the group by 5%, 15%, 65%, 10%, 5% based on their performance rating.So for example how I manually do this is by running the report of employees.
I then sort the list by Performance ratings from High to Low (0.0-5.0 is our range and you can have decimals in between 0.1, 2.5, 2.3 etc.)
I then take the total number of employees and calculate the top 5%, next the 15%, then 65%, then 10%, 5% (so breaking them up into groups).
Doing this isn’t horrible, but I have to do this for each department and we are talking 700 departments. Each department is not alike- so some may have 50 employees while others may have 200+.
Is there an easier way to do this in excel??
Anytime an email starts with I Love, I am all ears. So naturally I read the entire mail. And I had to sympathize with her. 700 DEPARTMENTS?!? Can you imagine dealing with 700 departments with lots of disgruntled employees. I remember my performance evaluation & rating days back when I had a full time job. Almost everyone I knew hated their bosses during the appraisal season. And when hikes are announced, everyone (including the person with fabulous hike) would call their favorite head hunter and flirt. Aah, good old days of ratings & reviews.
But I digress.
So going back to our HR manager in distress, how would you help her?
Your challenge – highlight employees by performance rating
Here is your challenge.
- Download this file.
- It contains data & coloring rules.
- Set up conditional formatting such that you can highlight the data based on the rules
- Bonus points if you can set up conditional formatting rules such that they work on any sheet (assuming each department has their own sheet of data in same format)
- Share your rules & solution with us in comments
- Feel jolly good knowing that you are awesome in Excel.

Need some help? Check out these articles
Conditional formatting is one of my favorite features in Excel. Naturally, I want you to be awesome in it. Check out these tutorials & examples to understand how to solve this problem.
- What is conditional formatting & how to use it?
- Using formulas with conditional formatting
- Highlight top 10 performances with conditional formatting
- More on conditional formatting [more than 60 examples]
Download my solution
Now, some of you might be in same boat as Shelly. Please note that I sympathize with anyone who deals with people from 700 departments or more. But sympathy seldom solves struggle. So, go ahead and download my solution. Break it apart, examine the conditional formatting rules and fire the bottom 5% of your employees. Well, go easy on the last part 😛
Click here to download my solution.
Go ahead and share your solution
So what are you waiting for. Put on your Excel hats and get thinking. Once you have an answer, rush back to us & post it in comments. Go!
Need more challenges? Try these too
If you want more Excel challenges & homework, check out these.














13 Responses to “Convert fractional Excel time to hours & minutes [Quick tip]”
Hi Purna..
Again a great tip.. Its a great way to convert Fractional Time..
By the way.. Excel has two great and rarely used formula..
=DOLLARFR(7.8,60) and =DOLLARDE(7.48,60)
basically US Account person uses those to convert some currency denomination.. and we can use it to convert Year(i.e 3.11 Year = 3 year 11 month) and Week(6.5 week = 6 week 5 days), in the same manner...
This doesn't work for me. When applying the custom format of [h]:mm to 7.8 I get 187:12
Any ideas why?
@Jason
7.8 in Excel talk means 7.8 days
=7.8*24
=187.2 Hrs
=187 Hrs 12 Mins
If you follow Chandoo's instructions you will see that he divides the 7.8 by 24 to get it to a fraction of a day
Simple, assuming the fractional time is in cell A1,
Use below steps to convert it to hours & minutes:
1. In the target cell, write =A1/24
2. Select the target cell and press CTRL+1 to format it (you can also right click and select format cells)
3. Select Custom from “Number” tab and enter the code [h]:mm
4. Done!
Hi, sorry to point this out but Column C Header is misspelt 'Hours Palyed'
good one
So how do I go the other way and get hours and minutes to fractional time?
If you have 7.5 in cell A1,
- Use int(A1) to get the hours.
- Use mod(A1,1)*60 to get minutes.
If you have 7:30 (formatted as time) in A1
- Use hours(a1) to get hours
- Use minutes(a1) to get minutes.
I had the same issue. You can solve it by changing the format as described above:
Right click cell > Format Cells > (In Number tab) > Custom > Then enter the code [h]:mm
([hh]:mm and [hhh]:mm are nice too if you want to show leading zeros)
Thanks guys, these are the tips I'm looking for.
...dividing the number of minutes elapsed by the percent change is my task - "int" is the key this time
It doesnt work for greater than 24 hours
It returns 1:30 for 25.5 hours. It should have returned 25:30
Ideally I would right function as
=QUOTIENT(A1,1)&":"&MOD(A1,1)*60
Sorry, replied to wrong comment....
----
I had the same issue. You can solve it by changing the format as described above:
Right click cell > Format Cells > (In Number tab) > Custom > Then enter the code [h]:mm
([hh]:mm and [hhh]:mm are nice too if you want to show leading zeros)
Clever use of MOD here to extract the decimal part of a number. Divide a number containing a decimal by 1 and return the remainder. Humm. Very clever.
Thanks very much, extremely useful !