Alphabetizing/Find-Replacing

gijoey24

New Member
Joined
Oct 17, 2016
Messages
2
Hey guys,

So this one is really getting in the weeds. I'm using the following code to convert a series of names in a cell delimited by commas to codes the names represent, with spaces and commas delimiting, still as text in a single cell.

3 Part Question:


  1. As is, after I run the script I'm getting an extra " " in front of the result, and I can't see where I've screwed that up?
  2. After I've converted the names to codes, I want to alphabetize the codes. Definitely want the alphabetization to occur after the code conversion, because the names and codes don't line up alphabetically, so I want to use the codes as the values to alphabetize.
  3. After I've done that, I want to set up a second button to do pretty much the same function, except find and remove (replace w/ "", what have you) from a cell containing the codes we've just put together. So I enter names, hit button, and it converts to codes per below, then removes those codes from a cell which may contain them.

I'm at the early end of my VBA experience and as much as it kills me to post this because I want to solve it myself, I've got to get this finished for a project I'm working on. I'm banging my head against the wall here- any chance somebody's got an idea?


Sub Button2ForamIndex_Click()


Dim KeyCells As Range


' The variable KeyCells contains the cells that will
' cause an alert when they are changed.

Set KeyCells = Range("Q13")

For Each editedCell In KeyCells.Cells
If Not Application.Intersect(KeyCells, editedCell) Is Nothing Then

Dim splitcells() As String
splitcells = Split(editedCell.Value, ",")
editedCell.ClearContents
For Each splitCell In splitcells
Dim trimCell As String
trimCell = Trim(splitCell)
Set ForamLookupTable = Worksheets("References").Range("U:V")
Set GenusCodeLookupTable = Worksheets("References").Range("V:V")
Set FamilyLookupTable = Worksheets("References").Range("T:X")

If (Not IsEmpty(trimCell)) Then
If Not IsError(Application.VLookup(trimCell, ForamLookupTable, 2, False)) Then
editedCell.Value = editedCell.Value & "," & Application.VLookup(trimCell, ForamLookupTable, 2, False)
ElseIf Not IsError(Application.VLookup(trimCell, GenusCodeLookupTable, 1, False)) Then
editedCell.Value = editedCell.Value & "," & Application.VLookup(trimCell, GenusCodeLookupTable, 1, False)
ElseIf Not IsError(Application.VLookup(trimCell, FamilyLookupTable, 4, False)) Then
editedCell.Value = editedCell.Value & "," & Application.VLookup(trimCell, FamilyLookupTable, 5, False)
Else
editedCell.Value = editedCell.Value & "," & trimCell
End If
End If
Next
End If


If Left(editedCell.Value, 1) = "," Then
If Len(editedCell.Value) > 1 Then
editedCell.Value = Right(editedCell.Value, Len(editedCell.Value) - 1)
End If
End If
Next
End Sub
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
OK- Figured out the spacing issue, which was unbelievably stupid on my part. Just needed to remove 2 spaces at the end instead of one, so the bottom looks like this:

Code:

If Left(editedCell.Value, 1) = "," Then
If Len(editedCell.Value) > 1 Then
editedCell.Value = Right(editedCell.Value, Len(editedCell.Value) - 2)
End If
End If
Code:

So now just to the Alphabetizing and Find/Removing...
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,020
Members
449,203
Latest member
tungnmqn90

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top