+ Reply to Thread
Results 1 to 9 of 9

Thread: Lesson reservation calendar

  1. #1
    Registered User
    Join Date
    07-27-2011
    Location
    Sapporo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    4

    Lesson reservation calendar

    I would *really* appreciate some direction on where to look for help on my lesson reservation calendar.
    I tried searching the forums but I don't know exactly what I should look for.


    Basically, I want to be able to put names onto an English lesson reservation calendar and be able to click directly on the name to send e-mail.
    • I already know how to create a hyperlink in Excel to send e-mail.

      What I don't know how to do is have Excel autofill and create a hyperlink automatically every time I put their name on a certain date on the calendar.

    A couple details if you need them:


    I am running a small English school with around 50 students. They take a certain number of lessons before going abroad.
    So, I have workbook that has one worksheet with a list of names of students. I keep track of when they take each lesson.

    For example:
    SMITH, JOHN - Lesson 1: 2/4/2011 | Lesson 2: 3/3/2011 | Lesson 3: |
    ^-- Currently, this name is hyperlinked to their e-mail address.

    This is fine, but on another sheet I have a reservation calendar with spaces for their names. They reserve lessons ahead of time and I put their name into the calendar.
    Some days can have 10 to 12 people reserved. I want to be able to autofill or choose their name from a list and have it automatically create a hyperlink the same as the name on the other worksheet.

    For example:
    July 27th:
    SMITH <-- I would like this name to be linked to the mail address on the lesson record.
    JOHNSON
    EARP.. etc.

    Is this possible, and how would I go about looking for the solution?

  2. #2
    Valued Forum Contributor Miraun's Avatar
    Join Date
    04-03-2009
    Location
    Location: Location
    MS-Off Ver
    Excel 2007
    Posts
    266

    Re: Need help making a lesson reservation calendar + record with e-mail

    Hi Frungy;

    There was a lot of information in that post... There are many questions, each of which build off of eachother. From experience, it's best to break these up, and post one specific question at a time. Additionally, while I know you've described your worksheet, posting a sample workbook (while removing any personal information) makes it much easier to give you better advice.

    "create a hyperlink automatically when I put a name in"

    Creating it automatically would require a macro that is performed upon worksheet update. This can be imbedded directly into the particular sheet that you're working on. Since I don't know the e-mail hyperlinks you've been using, or how you're looking to set up your e-mails, that's the only direction I can point you in for that question.

    "using drop down menus to select students for reservations"

    This is used by data validation... but I'm not sure if you're looking to have your entire list of students, or just a subsection based upon some other scheduling.
    I '<3' reputation. If I helped, click the scales. This will be helping an internal departmental competition with co-workers.

    Reputation can be granted through the Scales Icon (for classic layout), or the little Star on the bottom of the post next to the blogging function for the new forum layout.

    If you're not busy, and really feel down on life, read my excel blog which may or may not have contents.

  3. #3
    Registered User
    Join Date
    07-27-2011
    Location
    Sapporo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Need help making a lesson reservation calendar + record with e-mail

    Miraun:

    Thank you very much. I have to admit I have never posted in a forum before, so the advice is appreciated.

    I've attached a sample workbook. It seems like a simple thing to do, but I just don't know what to look for. If someone could help me out it would be great!

    In return, I'll teach you to say anything you want in Japanese, one phrase! (Keep it clean, though.)
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor Miraun's Avatar
    Join Date
    04-03-2009
    Location
    Location: Location
    MS-Off Ver
    Excel 2007
    Posts
    266

    Re: Need help making a lesson reservation calendar + record with e-mail

    Flying from Bangalore to Boston today/tonight/tomorrow/forever... I'll download the example you posted and get back to you... eventually... unless another member chimes in.

    I spent 4 months working out of Tokyo, living over at the Hilton in Shinjuku, commuting over to Kawasaki for a bit, and then at an office next to Suitengumae. Can't really speak any Japanese anymore, but I can pretty well understand spoken.
    I '<3' reputation. If I helped, click the scales. This will be helping an internal departmental competition with co-workers.

    Reputation can be granted through the Scales Icon (for classic layout), or the little Star on the bottom of the post next to the blogging function for the new forum layout.

    If you're not busy, and really feel down on life, read my excel blog which may or may not have contents.

  5. #5
    Registered User
    Join Date
    07-27-2011
    Location
    Sapporo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Need help making a lesson reservation calendar + record with e-mail

    Well, please take your time. I'm relying completely on your generosity so I'll just wait. If I find the solution myself (... probably unlikely) I'll post what I found.

  6. #6
    Valued Forum Contributor
    Join Date
    04-21-2007
    Location
    Lima, Peru
    MS-Off Ver
    2000, 2007, 2010
    Posts
    659

    Re: Need help making a lesson reservation calendar + record with e-mail

    Hi

    Please find attached an amended workbook to achieve what you are looking for, albeit slightly differently.

    I hope that you can make use of it.

    Regards

    Jeff
    Attached Files Attached Files

  7. #7
    Valued Forum Contributor
    Join Date
    10-13-2010
    Location
    Sunderland, England
    MS-Off Ver
    Excel 2007 (Home) / 2003 (Work)
    Posts
    567

    Re: Lesson reservation calendar

    Hi Frungy

    Try the attached macro, I think this should work for your needs. You do need to add a little more data on the lesson record tab (ID and e-mail for each student), but once this is done once for each student it should work fine.

    Regards

    BB
    Attached Files Attached Files

  8. #8
    Valued Forum Contributor Miraun's Avatar
    Join Date
    04-03-2009
    Location
    Location: Location
    MS-Off Ver
    Excel 2007
    Posts
    266

    Re: Lesson reservation calendar

    Sub Createlink()
    Dim Current As Range
    Dim Startsheet As String
    Dim Name As String
    
    Application.ScreenUpdating = False
    Startsheet = ActiveSheet.Name
    
    MsgBox (ActiveRange)
    For Each Cell In Selection
        Set Current = ActiveCell
        Name = ActiveCell.Value
            If ActiveCell.NumberFormat = "m/d;@" Then
            Exit For
        Else
            Sheets("Lesson Record").Select
            Cells.Find(What:=Name, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                MatchCase:=False, SearchFormat:=False).Activate
                On Error GoTo Error
            ActiveCell.Copy
              Sheets(Startsheet).Current.Select
            ActiveCell.Paste
        End If
    Error:
        Next
    Application.ScreenUpdating = True
    
    End Sub

    Hey Frungy;

    Sorry for the delay. This code will basically do a quick search on your Lesson Record page, and replace the current cell with the cell (containing the hyperlink) from the Lesson Record. Unfortunately, I had problems using ranges properly, so you can only run it on a single cell at a time... it'll take me another hour or so to make it applicable for a range.

    I took a look at the other responses, and I like Brokenbiscuits response better than my own. Although, I'm not sure how much data you actually have in your sheet as to whether or not the separation of the e-mail address is feasible.
    I '<3' reputation. If I helped, click the scales. This will be helping an internal departmental competition with co-workers.

    Reputation can be granted through the Scales Icon (for classic layout), or the little Star on the bottom of the post next to the blogging function for the new forum layout.

    If you're not busy, and really feel down on life, read my excel blog which may or may not have contents.

  9. #9
    Registered User
    Join Date
    07-27-2011
    Location
    Sapporo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Need help making a lesson reservation calendar + record with e-mail

    Hello solnajeff, brokenbiscuits, and Miraun!

    Forgive my delay. I tried connected to the forum for the last couple days but it seemed be down. Not sure why I couldn't connect. With all these ideas, I think I can get my Lesson Record working great.

    As for excel, I can't really offer anything to you guys but again, if you need something translated or help with Japanese, let me know... I don't know how else I can thank you (other than clicking the scales.) :D Thank you very much.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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.2.0