我有一个定期收到的电子表格,其中包含大量包含名称的单元格。一些单元格具有全名,包括具有句点的中间首字母。
例如:
施普林格,杰里A。
虽然我收到的表单会有以下内容:
斯普林格,杰里。
我需要摆脱那些中间名首字母,但也检查以确保我只删除“。”如果它在那里。
原谅我缺乏正确的逻辑,但我有以下ca-ca sub:
Sub DeleteMiddleI()
Dim nr1, nr2 As Range
Dim col As Integer
col = 1
Set nr1 = Cells(65536, col).End(xlUp)
Set nr2 = Cells(col, 1)
Do While nr2 <> nr1
'Check to be sure the cell isn't empty
If Len(nr2) <> 0 Then
'Check to see if the last character is a "."
If Right$(nr2, 1) = "." Then
'Check and be sure there is a character before the "."
If InStr(1, nr2.Text, "[A-Z].") > 0 Then '<<<<<<CODE BREAKAGE
nr2 = Left$(nr2, Len(nr2) - 3)
End If
End If
End If
col = col + 1
Set nr2 = Cells(col, 1)
Loop
End Sub
打破了
如果InStr(1,nr2.Text,“[A-Z]。”)&gt; 0然后
我感到愚蠢......但我错过了什么?
答案 0 :(得分:4)
这会有帮助吗?这将取代所有“。”什么都没有。
Option Explicit
Sub Sample()
Sheets("Sheet1").Cells.Replace What:=" .", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
End Sub
修改强>
删除缩写部分是什么意思?您的意思是将Springer, Jerry A.
更改为Springer, Jerry
或Springer, Jerry .
更改为Springer, Jerry
如果是,那会有帮助吗?
Option Explicit
Sub Sample()
Dim LastRow As Long
Dim Pos As Long, i As Long
With Sheets("Sheet1")
LastRow = .Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LastRow
Pos = InStr(1, .Range("A" & i).Value, ", ") + 2
If Pos > 2 Then
Pos = InStr(Pos, .Range("A" & i).Value, " ")
If Pos > 0 Then .Range("A" & i).Value = Mid(.Range("A" & i).Value, 1, Pos - 1)
End If
Next i
End With
End Sub
答案 1 :(得分:0)
你可以改变if测试:
If Right$(nr2, 1) = "." Then
到
If (Right$(nr2, 1) = "." AND Left$(nr2, 1) <> "." ) Then