Formula Needed (If,VLookup?)

Polsy

New Member
Joined
Oct 2, 2006
Messages
3
Afternoon All,


Just wanna say hey before I start ranting :)


I've got a question for you guys. I've been racking my brains on it for quite some time.

Basically I'm needing a formula that some how takes a list of data, in this case names and outputs them into a specific cell, easy enough right? Simple Vlookup, but no. I'm needing these names to be output on relevant dates, in this case weekly.

Sort of a rotation type bases, it needs to go through these names (There are 6) and output all six before starting again.


Like I said, its a bit of an **** and its causing me no end of trouble.


Any Help is greatly appreciated
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Something like this, perhaps?
Book1
HIJK
10tomjane
11****
12harry
13jane
14polly
15kelley
Sheet1


Each week, it will rotate to the next person, then start at the top...
Code:
=INDEX(H10:H15,MOD(INT((NOW()-DATE(YEAR(NOW()),1,1))/7),COUNTA(H10:H15))+1)
... you can replace now() with a cell, and then try a whole bunch of dates to see how it works...
 
Upvote 0
By jove I think the boys got it!!!


I cant thank you enough mate, my head was about to explode tryin to break down that lil *****.


Cheers Mate :)
 
Upvote 0
Glad it satisfies... I was afraid you might be looking for a RANDOM weekly assignment without repeating... that would have been tougher...
 
Upvote 0

Forum statistics

Threads
1,213,531
Messages
6,114,167
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top