+ Reply to Thread
Results 1 to 13 of 13

Select Case Statement

Hybrid View

  1. #1
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    It should be like this

    Dim sinMonth As Single
    
    sinMonth = Month(Date)
    Select Case sinMonth
        Case 1
            Application.Goto Sheets("Jan").Range("E5")
         Case 2
            Application.Goto Sheets("Feb").Range("E5")
         Case 3
    'etc
    Case Else
    Exit Sub
    End Select
    or

    Select Case Month(Date)
        Case 1
            Application.Goto Sheets("Jan").Range("E5")
         Case 2
            Application.Goto Sheets("Feb").Range("E5")
         Case 3
    'etc
    Case Else
    Exit Sub
    End Select
    Last edited by royUK; 05-20-2008 at 01:03 PM.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1