Figure out slot from given time [quick tip]

Share

Facebook
Twitter
LinkedIn

Here is an interesting scenario.

Let’s say you are looking at a time, like 9:42 AM and want to know which 15 minute slot it fits into. The answer is 9:30 – 9:45. But how would you get this answer thru Excel formulas?

timeslot-from-time-excel-formulas

Excel formula to find slot from time:

Assuming A1 contains the input time, here is one formula that tells you the time slot.

=TEXT(TIME(HOUR(A1),INT(MINUTE(A1)/15)*15,0),”hh:mm”)&” – “&TEXT(TIME(HOUR(A1),(INT(MINUTE(A1)/15)+1)*15,0),”hh:mm”)

Whoa!, that’s long. Let’s examine the inner workings of this beast.

Logic: We need to figure out both lower & upper boundaries of fifteen minute slot for time in A1. The lower boundary is quotient of A1/15 minutes multiplied by 15. For example, 09:42’s lower boundary is 09:30. The upper boundary is lower boundary + 15 minutes.

Implementation:

INT(MINUTE(A1)/15) * 15 portion: this part of the formula tells us the minutes. We extract the minute part of A1 (using MINUTE(A1)) and divide it with 15. We then take only the integer portion of this division and multiply that with 15 again. This gives us the minute portion of lower boundary of our time slot.

TIME(HOUR(A1), INT(..)*15, 0) portion: We then create a time value using the TIME formula by using the same hour as A1, minutes from lower boundary calculation using the INT(…)* 15  and 0 as seconds.

TEXT(TIME(…), “hh:mm”) portion: This will convert the time value to text formatted as hh:mm.

So far we have constructed the lower boundary of time slot. The upper boundary part of the formula is similar with one minor change. Go figure it out.

How to find 1 hour time slot?

Let’s say you want to find the time slot on hourly basis, then what?

Below formula does the job.

=HOUR(A1)&”:00 – ” & (HOUR(A1)+1) & “:00”

What if your time slots are not uniformly spaced?

The above approaches work fine as long as your time slots are uniformly spaced (ie 15 minutes, 1 hour, 4 hours or 8 hour apart). What if you have a unique set up? Something like this:

non-uniform-time-slots-how-to

In that case you can use the range lookup method.

Related: read about pricing tier lookup too.

So there you go. For more information about working with date & time values in Excel, check out below material.

A challenge for you:

How would you write the 15 minute time slot formula? Can you figure out other ways to calculate it? Please share your formulas in the comments section. Your time starts now!

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

5 Responses to “Preparing Profit / Loss Pivot Reports [Part 2 of 6]”

  1. maury sway says:

    I am not getting sound from the videos. I have checked all the settings and spent several hours searching the Internet to no avail.

    Has anyone else had this problem?

  2. anne says:

    Is there anyway to get the Grand Total to be broken out in the same fashion as the items above it?  For instance, if you have in column 1, widget a, widget b, and have their sales by month in column 2, I'd like to see the grand total also be by month, for widget a & b combined.

    I can't get anything other than a single line for the grand total, rather than the same format as the data above.

    Widget A       Month    Sales
                        Jan        100
                        Feb        200
    Widget B 
                        Jan        150
                        Feb        250
    Grand total - here I would also like to have Jan, Feb.
                        Jan        250
                        Feb        450
     

Leave a Reply