+ Reply to Thread
Results 1 to 7 of 7

Getting macro to return input made into input box

Hybrid View

  1. #1
    Registered User
    Join Date
    11-10-2011
    Location
    Tasmania, Australia
    MS-Off Ver
    Excel 2003
    Posts
    10

    Unhappy Getting macro to return input made into input box

    Hi i am very new to excel macros and i am very lost. I am trying to get a macro to calculate the sum of a number of cells and from that calculate an escalation based on the input made into an input box.. this is working fine but i need to get the macro to return the input made into the input box in the cell below with a percentage symbol. This i can't figure out.. This is what i've tried..

      Dim intEscRate As Integer
        intEscRate = InputBox("Enter an escalation percentage: ")
        ActiveCell.FormulaR1C1 = "=SUM(R[-4]C+R[-3]C+R[-2]C)"
        ActiveCell.Offset(1, 0).Range("A1").Select
        ActiveCell.FormulaR1C1 = "=R[-1]C*1." & intEscRate & ""
        ActiveCell.Offset(1, 0).Range("A1").Select
        ActiveCell.FormulaR1C1 = Val("intExcRate")
        ActiveCell.Offset(1, 0).Range("A1").Select
    It's the last two lines that aren't right. For example if i put 25 into the inpur box i need the macro to put 25% into the cell below the other two values.

    Can anyone help me please??
    Last edited by davesexcel; 11-10-2011 at 11:36 PM. Reason: Please use code tags when submitting code

  2. #2
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Getting macro to return input made into input box

    Hello and welcome to the forum. What is val in your last formula? Is this a user-defined function because Excel doesn't seem to recognize it.

    abousetta
    Please consider:

    Thanking those who helped you. Click the star icon in the lower left part of the contributor's post and add Reputation.
    Cleaning up when you're done. Mark your thread [SOLVED] if you received your answer.

  3. #3
    Registered User
    Join Date
    11-10-2011
    Location
    Tasmania, Australia
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Getting macro to return input made into input box

    Well i'm not entirely sure. I just thought i used Val to get it to use the value of intExcRate but i really have no idea what i'm doing. This is the first time i've ever used macros..

    Everything works but the last two lines and i kinda just made them up to try and get it to return the input made into the input box.. that's what i need the last bit to do but like i said i have no clue ..

  4. #4
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Getting macro to return input made into input box

    OK. I'm not exactly sure what you are attempting to accomplish but this should give you the results you are after.

    Sub test()
    
    Dim intEscRate As Integer
        intEscRate = InputBox("Enter an escalation percentage: ")
        With ActiveCell
            .Formula = "=SUM(R[-4]C+R[-3]C+R[-2]C)"
            .Offset(1, 0).Formula = "=R[-1]C*1." & intEscRate
            .Offset(2, 0).Formula = intEscRate / 100
            .Offset(2, 0).Style = "Percent"
        End With
    
    End Sub
    If you could post a workbook then we may be able to tweak this better for you.

    Hope this helps.

    abousetta
    Last edited by abousetta; 11-11-2011 at 12:18 AM. Reason: small tweak to the formula

  5. #5
    Registered User
    Join Date
    11-10-2011
    Location
    Tasmania, Australia
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Getting macro to return input made into input box

    That works perfectly!!! I don't understand it though! lol .. Thank you SOOO much for helping me! Now if i could just work out how you did what you just did i'd be fine!

  6. #6
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Getting macro to return input made into input box

    Hi,

    No problem. So let's break it down:

        With ActiveCell
        End With
    This saves time in writing the code and running it. Instead of Activecell. something and Activecell. something you can simply use With... End With and make sure the dot stays with the next lines.

            .Formula = "=SUM(R[-4]C+R[-3]C+R[-2]C)"
            .Offset(1, 0).Formula = "=R[-1]C*1." & intEscRate
            .Offset(2, 0).Formula = intEscRate / 100
            .Offset(2, 0).Style = "Percent"
    Offset method you already know so I won't go into it, but all I did was use the Activecell as the reference and offseted 1 and 2 cells and added the formulas. For the second formula I divided by 100 (to get a percentage) and formatted the cell as percentage rather than general.

    Hope this helps.

    abousetta

    P.S. Thanks for marking the thread as Solved.

+ 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