Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 02-02-2012, 07:48 AM
JBeaucaire JBeaucaire is offline Change values in cells based on criteria Windows XP Change values in cells based on criteria Office 2003
Advanced Beginner
 
Join Date: Dec 2011
Posts: 51
JBeaucaire is on a distinguished road
Default

This should do it for you, add more "cases" if you wish:

Code:
Option Explicit

Sub AdjustHistoricCodes()
Dim MyCodes As Variant, c As Long, LR As Long

LR = Range("A" & Rows.Count).End(xlUp).Row

MyCodes = Application.Transpose(Range("A2:A" & LR))

For c = LBound(MyCodes) To UBound(MyCodes)
    Select Case UCase(Left(MyCodes(c), 4))
        Case "CTCR":    MyCodes(c) = "N" & Mid(MyCodes(c), 5, Len(MyCodes(c)))
        Case "CTCP":    MyCodes(c) = "P" & Mid(MyCodes(c), 5, Len(MyCodes(c)))
        Case "CTWC":    MyCodes(c) = "CP" & Mid(MyCodes(c), 5, Len(MyCodes(c)))
        Case "CASM":    MyCodes(c) = "S / WR" & Mid(MyCodes(c), 5, Len(MyCodes(c)))
        Case "CANM":    MyCodes(c) = "N / WR" & Mid(MyCodes(c), 5, Len(MyCodes(c)))
    End Select
Next c

Range("A2:A" & LR).Value = Application.Transpose(MyCodes)
    
End Sub
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Automatically change the value of one cell so that two other cells become equal matthew544 Excel 5 09-18-2011 08:56 AM
Change values in cells based on criteria Selecting blank cells in criteria apolloman Excel 6 08-24-2011 05:38 AM
How can I change the colors of cells automatically based on Job Completion? Learner7 Excel 0 07-06-2010 10:47 PM
Count range cells eliminating merge cells danbenedek Excel 0 06-15-2010 12:40 AM
How to count cells containing data and meet certain criteria AdamNT Excel 1 08-11-2006 11:51 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 03:46 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft