+ Reply to Thread
Results 1 to 10 of 10

Change Cell if One of Multiple Values (VBA)

  1. #1
    Registered User
    Join Date
    10-08-2008
    Location
    Indy
    Posts
    14

    Change Cell if One of Multiple Values (VBA)

    I believe my code if pretty self explanatory:

    Please Login or Register  to view this content.
    Basically, if the cell contains any of the 4 values shown above, I want it changed into SG&A. I am looping this to run on every row I use, and think it would be faster if I could do it in one step. Is there someway I can say if the value is equal to (G&A Spend, Labor - G&A, Labor Selling, Selling Spend), then change to SG&A.

    Something along the lines of this (it doesn't work):

    Please Login or Register  to view this content.
    Last edited by gema; 11-13-2009 at 03:29 PM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Change Cell if One of Multiple Values (VBA)

    I'll move this to the programming forum ...
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Change Cell if One of Multiple Values (VBA)

    One way:
    Please Login or Register  to view this content.

  4. #4
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Change Cell if One of Multiple Values (VBA)

    Simple code:
    Please Login or Register  to view this content.
    but efficient code is rarely the shortest, efficient code would almost certainly avoid the loop altogether, but you haven't posted that part...

    CC

  5. #5
    Registered User
    Join Date
    10-08-2008
    Location
    Indy
    Posts
    14

    Re: Change Cell if One of Multiple Values (VBA)

    Here is all of the code:

    Please Login or Register  to view this content.

  6. #6
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Change Cell if One of Multiple Values (VBA)

    Ok.

    Simple answer, the proposed select case could easily be expanded, if my previous post doesn't make it clear, please look at the help, the help for this particular construct (select case) is very straightforward, anything I wrote here would basically just be a reiteration.

    Slightly less simple, (as I mentioned before) loops are very inefficient. If your data set is more than ~1000 entries, you would be better served by writing your "Direct Material, Indirect Material... etc" to an array, then looping through the array and applying an autofilter to your dataset (record a macro to get syntax) for each array element, then applying the "rewrite" to the range(topcell, topcell.end(xldown)) for each array element.

    Most awkward, and poignant, answer. Overwriting this kind of information is pointless. It takes hardly *any* memory to retain the original entries for your categories, so you should write a simple vlookup to return the "groupings" to an adjacent column - if you ever need to refer back to the granularities, you won't be banging your head against the wall for overwriting them with a stupid ruddy macro! Of course, if you are pivoting your data (which I'd probably recommend), you don't need even to group in source data, you can apply groups in pivot tables very easily.

    I hope this all makes sense, please post back for more specific help on any aspect (I have deliberatley not gone into detail because depending on your choice, some of my recommendations are irrelevant), but (obviously?) I recommend you bin the macro altogether and simply retain your raw data and group it "after the data" rather than rewrite.

    CC

  7. #7
    Registered User
    Join Date
    10-08-2008
    Location
    Indy
    Posts
    14

    Re: Change Cell if One of Multiple Values (VBA)

    Thanks for the ideas. I went with the vlookup route, and now all of the rows (~7000) can be updated in a matter of seconds (rather than the 5 minutes it took before).
    Last edited by shg; 11-13-2009 at 03:38 PM. Reason: deleted spurious quote

  8. #8
    Registered User
    Join Date
    07-30-2012
    Location
    Indianapolis
    MS-Off Ver
    2010
    Posts
    2

    Re: Change Cell if One of Multiple Values (VBA)

    Forgive me I am very new to VBA. I have learned a lot with recording macros and searching Google. It is very hard to find c=26 though. Even with limiters, the results are unbearable to look through. So I just have a few questions about the code in this thread. I have added the questions to the code. I am guessing my questions are basic, but as I said I am still learning.

    Quote Originally Posted by gema View Post
    Here is all of the code:

    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    10-08-2008
    Location
    Indy
    Posts
    14

    Re: Change Cell if One of Multiple Values (VBA)

    Wow, haven't seen this in awhile. I'll do my best to explain but I haven't used VBA in a couple years.

    c=26 defines what column the code looks at when I referenced c. I like to define variables in VBA to make updating them easier. For example, lets say the file changed and I wanted to reference column 30 instead. Since the variable is defined, I would only have to change it in one place, instead of everywhere there is a (r, c).

    This particular code needed to run on every row from 2 through the end (length of report was always changing). The r = 2 says to start on row 2, then count however many rows are used in column J and run on every row in that range. I don't remember this file, but I probably chose column J because it was the one row with the most complete data (had data in every row to the end).

    Column 26 is the column that the functions are analyzing, but column J is used to determine how many rows the functions should analyze.

    Hope this helps.

  10. #10
    Registered User
    Join Date
    07-30-2012
    Location
    Indianapolis
    MS-Off Ver
    2010
    Posts
    2

    Re: Change Cell if One of Multiple Values (VBA)

    Yes it does 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)

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