+ Reply to Thread
Results 1 to 4 of 4

switch code in cell into code for vba

Hybrid View

  1. #1
    Registered User
    Join Date
    10-07-2009
    Location
    Arizona
    MS-Off Ver
    Excel 2007
    Posts
    19

    switch code in cell into code for vba

    Is there a way to convert a code that you put in a cell like this one
    HTML Code: 
    into code in vba?

    P17 is the cell that I have this coding in - it will determine if there is text in C17 and if there is it will pull up the pricing and markup associated with it and put the resale price in p17.
    C17 is text. On another sheet of the workbook there is text that associates with numbers (pricing and markups).
    N17 is the price (that is associated with C17)
    O17 is the markup (associated with C17)
    This goes through a range of P17 to p63 so there would need to be a loop. I was thinking along these lines but....
    HTML Code: 
    Anyone have a completely different idea of how to do it or continuing my idea? (the reason I'm wanting it in vba rather than each individual cell is I want to tweak that code to allow the user to enter their own price and markup if they want rather than the one pulled up, but if the code is in the cell then once they type in their numbers the code will be gone (since the cell can't be protected to allow for their input. So the vba code will need to allow for user input, but if there is no user input into cells N(i) and O(i) then it will use the associated numbers.)
    Thanks for all help.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: switch code in cell into code for vba

    Maybe a simpler approach to rewriting the whole thing is to just have a macro that you can run anytime you want to RESTORE the original formula to a cell you overtyped the formula?

    Here's a macro that will do that. It makes sure your selection is in the column P range, the puts the formula back in. It works for any number of cells you have selected in the range.
    Option Explicit
    
    Sub ResetFormula()
    Dim Cell As Range
    
    For Each Cell In Selection
        If Not Intersect(Cell, Range("P17:P63")) Is Nothing Then _
            Cell.FormulaR1C1 = _
                "=IF(RC3="""","""",IF(ISERROR(VLOOKUP(RC3,vwlookup,4,FALSE)),IF(RC14="""",0,IF(RC15="""",0,RC14*(1+RC15))),VLOOKUP(RC3,vwlookup,4,FALSE)))"
    Next Cell
    
    End Sub
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    10-07-2009
    Location
    Arizona
    MS-Off Ver
    Excel 2007
    Posts
    19

    Re: switch code in cell into code for vba

    How would that be applied (sorry I'm a newbie to macros and such). Would I insert a module and put the formula there? How would it determine whether or not to past the formula back, would it determine if there were nothing written in that spot then it would apply it?

    Thanks for your time explaining this to me.

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

    Re: switch code in cell into code for vba

    You need to make sure that you understand basic Excel before venturing into VBA. You cannot put code ino a cell, that is a Formula.

    I can't really see why you think VBA would be better than a formula approach, attach a workbook example
    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