Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello All,
I have this macro, what is does is it keeps in the column directionals like S, W, N, E and moves the rest to the next column. What is want is opposite keep everything and move the directional to the next column. Any help? Sub Move_Value() Dim rngB As Range Dim cel As Range Dim strToFind As String Dim strValid As String 'String to have both leading and trailing commas for each value strValid = ",N,S,W,E,NE,NW,SW,SE,WN,WS,ES,EN," 'NOTE:Cells(2, "B") starts row 2. 'To start row 1 change to Cells(1, "B") With Sheets("Sheet1") 'Edit sheet name if required Set rngB = Range(Cells(2, "B"), _ Cells(Rows.Count, "B").End(xlUp)) rngB.Select End With For Each cel In rngB 'Create string from cell value with 'leading and trailing commas strToFind = "," & cel.Value & "," 'Test for existance of string 'If following line returns Zero then not found. If InStr(1, strValid, strToFind) = 0 Then 'Not found therefore copy to column C cel.Offset(0, 1) = cel.Value 'Clear value from column B cel.ClearContents End If Next cel End Sub Thx. -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...excel/200710/1 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Move only around selected cells?? | Excel Discussion (Misc queries) | |||
Sorting cells: a list behind the cells do not move with the cell | Excel Discussion (Misc queries) | |||
How do I use the arrow key to move among cells? | Excel Discussion (Misc queries) | |||
Move 2 cells to right | Excel Discussion (Misc queries) | |||
how can I take 3 cells and move them to a different column into 1 | Excel Discussion (Misc queries) |