Link to home
Start Free TrialLog in
Avatar of Svgmassive
Svgmassive

asked on

How late

I am looking for a formula to determine what week range the numbers are late by eg, within one week,two weeks etc.
weeks-overdue.xlsb
ASKER CERTIFIED SOLUTION
Avatar of Tarik M. Zwain
Tarik M. Zwain
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Roy Cox
Try in B2 and copied down

=INT(A2/7)

This will return only whole numbers of weeks if you don't want to take into account odd days

You could try MROUND for the weeks

=MROUND(A2,7)/7
That could be as simple as:

=-INT(-A2/7)

Open in new window

MROUND will round to nearest factor rather than rounding up. Another option for rounding up is CEILING function:

=CEILING(A2,7)/7
Avatar of Svgmassive
Svgmassive

ASKER

gentlemen everyone was great,but i will have to do the first come first serve basis.
Thanks everyone
Thank you.