Consulting

Results 1 to 10 of 10

Thread: 2010 excel calendar

  1. #1
    VBAX Newbie
    Joined
    Jan 2010
    Posts
    3
    Location

    2010 excel calendar

    Hi all,

    Trying to find a calendar for 2010 in excel, a tab for every month and a simple looking calendar !
    Driving me crazy.
    Any suggestions.

    Also attempting to format a WIP template, also any suggestions ?
    Thanks in advance

  2. #2
    VBAX Mentor
    Joined
    Jun 2004
    Posts
    363
    Location
    A quick Google search led me here.
    http://office.microsoft.com/en-us/te...aspx?av=ZXL000
    Last edited by mbarron; 01-23-2010 at 09:02 PM.

  3. #3
    VBAX Newbie
    Joined
    Jan 2010
    Posts
    3
    Location
    thanks mbarron.
    tried this one already and it doesn't work for me.
    Im on a mac and although it does allow me to download and recommends stuffit expander to open the file I get and error #17540.
    Its a .cab file which Im not sure of ?

  4. #4
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  5. #5
    VBAX Newbie
    Joined
    Jan 2010
    Posts
    3
    Location
    thanks for this one.
    i also have seen this but could not find the actual download amongst all that info ?

  6. #6
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Do you mean you hadn't seen it, or you cannot now see it?
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  7. #7
    Note: Chip Pearson's calendar gives me errors in vista-XL2007 even with the toolpacks added. I cannot figure out why?

    I also suggest:

    Martin Green's version.
    Not that simple for beginners but explained in detail and with sample files.
    A very good example of the power of vba.
    Be aware of the NOTE in step 2.

    Erlandsen version
    Under 'Create a simple calendar'

    LJZ Soft (free download)
    Under XL Calendar 1.7.0

    and finally
    Ron de Bruin

    Don't know which of the above would work with apple though.
    Use 7-zip to unzip (see versions bottom page for MAC Os)

    Good luck
    Paul

  8. #8
    it is really useful, thank u pvaanrooijen

  9. #9
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    In Chip's calendar, change this code

    [vba]


    Range("StatusCell").Value = Format(TempDate, "mmm d, yyyy") _
    & " " & Format(DayOfYear(TempDate), "##0") & _
    NumberSuffix(DayOfYear(TempDate)) & " day of year." & _
    " Days From Now: " & Format(DateDiff("d", Now(), TempDate), "##,##0") & _
    " (Workdays: " & _
    Format(Evaluate("NETWORKDAYS(" & """" & Format(Now(), "Short Date") & _
    """" & Application.International(xlListSeparator) & _
    """" & Format(TempDate, "Short Date") & """" & ")")) & ")"
    [/vba]

    to this

    [vba]

    If Val(Application.Version) < 12 Then

    Range("StatusCell").Value = Format(TempDate, "mmm d, yyyy") _
    & " " & Format(DayOfYear(TempDate), "##0") & _
    NumberSuffix(DayOfYear(TempDate)) & " day of year." & _
    " Days From Now: " & Format(DateDiff("d", Now(), TempDate), "##,##0") & _
    " (Workdays: " & _
    Format(Evaluate("NETWORKDAYS(" & """" & Format(Now(), "Short Date") & _
    """" & Application.International(xlListSeparator) & _
    """" & Format(TempDate, "Short Date") & """" & ")")) & ")"
    Else

    Range("StatusCell").Value = Format(TempDate, "mmm d, yyyy") _
    & " " & Format(DayOfYear(TempDate), "##0") & _
    NumberSuffix(DayOfYear(TempDate)) & " day of year." & _
    " Days From Now: " & Format(DateDiff("d", Now(), TempDate), "##,##0") & _
    " (Workdays: " & _
    Format(Application.NetworkDays(Format(Now(), "Short Date"), Format(TempDate, "Short Date")))
    End If
    [/vba]
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  10. #10
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    BTW, I am referring to the procedure ShowStatusCell
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

Posting Permissions

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