+ Reply to Thread
Results 1 to 9 of 9

Clickable annual wheel

Hybrid View

daredan Clickable annual wheel 08-26-2014, 05:32 AM
LJMetzger Re: Clickable annual wheel 08-26-2014, 08:49 AM
daredan Re: Clickable annual wheel 08-26-2014, 09:20 AM
daredan Re: Clickable annual wheel 08-26-2014, 09:57 AM
daredan Re: Clickable annual wheel 08-27-2014, 04:12 AM
LJMetzger Re: Clickable annual wheel 08-27-2014, 10:20 AM
daredan Re: Clickable annual wheel 08-28-2014, 02:55 AM
lancer102rus Re: Clickable annual wheel 08-28-2014, 05:44 AM
daredan Re: Clickable annual wheel 08-28-2014, 08:25 AM
  1. #1
    Registered User
    Join Date
    11-05-2013
    Location
    DK
    MS-Off Ver
    Excel 365
    Posts
    19

    Re: Clickable annual wheel

    Thanks a stack Lewis. I'll start implementing and understanding your approach and will save a version including years when done. I should be able to include this part as it'll be hardly any different from your solution for the months.
    /Daniel

  2. #2
    Registered User
    Join Date
    11-05-2013
    Location
    DK
    MS-Off Ver
    Excel 365
    Posts
    19

    Re: Clickable annual wheel

    Hi again,

    I hate to admit it, but although I consider myself having at least some basic VBA knowledge this seems to exceed my current horizon (I'll have to work on that).

    I tried to incorporate your macro with the revised annual wheel (months and years) in the file, where I intend to use it, but failed both to activate your code so that the month would be updated (now in B2) and also to include the year as it's not just some simple copying of the monthly code. Also when I try to initially run the RenameActiveShape it only returns with a Runtime 438 'Object doesn't support this property or method'.

    So I have included now the whole thing, where the wheel is supposed to work in, which is a recurring task list plus a Gantt chart visualisation. For the latter I have another problem, but that's already posted in the chart section of this forum.

    Sorry for the troubles - really appreciate that it's generally working fine

    /Daniel
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    11-05-2013
    Location
    DK
    MS-Off Ver
    Excel 365
    Posts
    19

    Thumbs up Re: Clickable annual wheel

    Good day,
    I've solved the issue by using a simple macro per shape. Works like a charm as well.
    Option Explicit
    
    Sub Jan_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "January"
    End Sub
    Sub Feb_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "February"
    End Sub
    Sub Mar_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "March"
    End Sub
    Sub Apr_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "April"
    End Sub
    Sub May_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "May"
    End Sub
    Sub Jun_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "June"
    End Sub
    Sub Jul_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "July"
    End Sub
    Sub Aug_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "August"
    End Sub
    Sub Sep_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "September"
    End Sub
    Sub Oct_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "October"
    End Sub
    Sub Nov_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "November"
    End Sub
    Sub Dec_Click()
        Range("B2").Select
        ActiveCell.FormulaR1C1 = "December"
    End Sub
    Sub yr2014_Click()
        Range("B3").Select
        ActiveCell.FormulaR1C1 = 2014
    End Sub
    Sub yr2015_Click()
        Range("B3").Select
        ActiveCell.FormulaR1C1 = 2015
    End Sub
    Sub yr2016_Click()
        Range("B3").Select
        ActiveCell.FormulaR1C1 = 2016
    End Sub
    Sub yr2017_Click()
        Range("B3").Select
        ActiveCell.FormulaR1C1 = 2017
    End Sub
    Admit it could potentially be more fancy, but does what it's supposed to do.

    Cheers,
    Daniel

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Cells not clickable
    By rageshprasad in forum Excel General
    Replies: 5
    Last Post: 05-15-2014, 07:52 PM
  2. Replies: 1
    Last Post: 05-07-2014, 06:19 PM
  3. Clickable Counter
    By samwright in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-30-2013, 09:49 AM
  4. Calculating Average Annual Returns from a Series of Annual Returns
    By Bruinsfan in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-03-2012, 09:50 PM
  5. clickable buttons
    By Murph in forum Excel General
    Replies: 2
    Last Post: 06-22-2005, 03:05 PM

Tags for this Thread

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