Sharid
Well-known Member
- Joined
- Apr 22, 2007
- Messages
- 1,064
- Office Version
-
- 2016
- Platform
-
- Windows
I have several staff you need to complete training within deadlines. To keep myself on track with their progress I devised a spreadsheet to with a drop down menu option to select an answer of YES or NO depending on if they had completed training. After a while this became a pain as I had to select the NO option for all staff and then later change the NO into a YES once training had been completed.
I tried to set a macro so when clicked it would input all the NO options and I could later use the pull down to change them to a YES. My problem is my macro does not work.
Selection.AutoFill Destination:=Range("E9:E33"), Type:=xlFillDefault
Range("E9:E33").Select
Range("E9").Select
End Sub
The cells are E9 to E33 in column E
Once the macro is activated I want E9 to E33 to fill with the word NO. I can later use the pull down to change cells to a YES option once training is complete. Also what I need is that once the cells E9 to E33 are full the next time the macro is activated cells F9 to F33 in column F will read as NO and so on everytime the macro is activated.
Is this possible?
cheers
I tried to set a macro so when clicked it would input all the NO options and I could later use the pull down to change them to a YES. My problem is my macro does not work.
Selection.AutoFill Destination:=Range("E9:E33"), Type:=xlFillDefault
Range("E9:E33").Select
Range("E9").Select
End Sub
The cells are E9 to E33 in column E
Once the macro is activated I want E9 to E33 to fill with the word NO. I can later use the pull down to change cells to a YES option once training is complete. Also what I need is that once the cells E9 to E33 are full the next time the macro is activated cells F9 to F33 in column F will read as NO and so on everytime the macro is activated.
Is this possible?
cheers