Making a rota list

T

Tyler Durden

I work on in a Fire Station and we occasionally have to send Fir
Fighters to another station. When the person at the top of the list ha
been sent to another station they go to the bottom of the list, an
everyone else in the list moves up a place.

Can I do this quickly in excel?

Thanks in advance for any help
 
D

Don Guillett

Probably. Send me your file and this msg to dguillett1 @gmail.com

I work on in a Fire Station and we occasionally have to send Fire
Fighters to another station.  When the person at the top of the list has
been sent to another station they go to the bottom of the list, and
everyone else in the list moves up a place.
Can I do this quickly in excel?
Thanks in advance for any help.

Sub MoveTopL_MtoBottowSAS()
Application.ScreenUpdating = False
Range("L3:M3").Cut
Range("L13").Insert 'Shift:=xlDown
Application.ScreenUpdating = True
End Sub
 
Top