I have 3 sheets in my excel document, one sheet is a pre-defined set of dates, on is a control page with selectable drop downs and buttons, and the third sheet shows the output of what im trying to do. On the control sheet you can select a month from a cell with a validate list, depending on what month you choose depends on which cell is selected on my date sheet. When i debug the script i get that my CurrentMonth string is returning as 0, rather than the string defined as below. Have i missed something blatantly obvious? I hope this makes some sort of sence!
![]()
Dim Month As String Month = Sheets("Home").Range("B3").Value Dim CurrentMonth As String If Month = January Then CurrentMonth = "B2" ElseIf Month = February Then CurrentMonth = "C2" ElseIf Month = March Then CurrentMonth = "D2" ElseIf Month = April Then CurrentMonth = "E2" End If
Bookmarks