gpt4 book ai didi

excel - 突出显示内部没有特定字符(小写 a-z)的任何单元格

转载 作者:行者123 更新时间:2023-12-02 08:05:51 24 4
gpt4 key购买 nike

我有一些乱码(或者不是乱码,而是非英语字符,例如带有斯堪的纳维亚口音的 A 等),我需要从大约 80,000 个条目中找出它们。

我可以编写一个公式来选取并标记包含除

之外的任何 其他内容的单元格吗

abcdefghijklmnopqrstuvwxyz?

最佳答案

以下内容对我有用:

Option Explicit
Sub NonAscii()
Dim UsedCells As Range, _
TestCell As Range, _
Position As Long, _
StrLen As Long, _
CharCode As Long

Set UsedCells = ActiveSheet.Range("A1:A4271").CurrentRegion
For Each TestCell In UsedCells
StrLen = Len(TestCell.Value)
For Position = 1 To StrLen
CharCode = Asc(Mid(TestCell, Position, 1))
If CharCode < 97 Or CharCode > 122 Then
TestCell.Interior.ColorIndex = 36
Exit For
End If
Next Position
Next TestCell
End Sub

关于excel - 突出显示内部没有特定字符(小写 a-z)的任何单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13457069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com