5 minutes intervals

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a column that is sorted by time & date in one min. intervals. I need
it to show me the time in 5 min. intervals. Obviously excel can do this I
just can't figure it out, any suggestions?
 
HI April,

I assume that you dont want to merge any data here, just show every 5th entry.
If this is the case

=IF(MOD(MINUTE(C1),5)=0,"Show","")

Cell C1 contains your time. This will only display "Show" on every 5th
minute which you can then auto filter on.

HTH

Simon
 
April,

could you post a bit more detail, with examples of what your data looks
like? I have a feeling you want to show a range like 0-4, 5-9, 10-14
etc in one column so you can sort by these ranges, but Simon has taken
a different interpretation of what you want.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top