paul_pearson
06-12-2013, 03:01 PM
What formula do I require to achieve the following
Week number
Date sequence
Thanks
Paul
Excel 2013
Gary's Student
06-12-2013, 05:01 PM
Try these:
If the weeknumber is in A1, then:
=DATE(2013,1,A1*7-2)-WEEKDAY(DATE(2013,1,3)) for Monday
=DATE(2013,1,A1*7-2)-WEEKDAY(DATE(2013,1,3)) + 2 for Wednesday
=DATE(2013,1,A1*7-2)-WEEKDAY(DATE(2013,1,3)) + 4 for Friday
You dates are not valid Excel dates - they are are text.
See if this is what you wanted. It assumes your data is consistently in the format show (3-character day followed by date)
=WEEKDAY(MID(D4,5,LEN(D4)-4)+0)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.