- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用以下代码创建唯一电子邮件的电子邮件列表。该列表有很多重复项,但我只想要一次。有些行没有分配电子邮件,所以它们显示为
我已经在另一个工作良好的工作表中使用了它,不同之处在于在这个新应用程序上我需要将数据复制到一个临时位置,因为它已被过滤并且
CountIf
不适用于过滤的行。
该代码忽略了
我首先使用
CountIf
获取信贷员电子邮件列表(MLO 列表)。这很好用,但是获取处理器列表的代码无法正常工作。处理器列表下面的代码应该忽略任何等于
Sheets(2).Cells.ClearContents
lastSrcRw = Sheets("Pipeline").Cells(Rows.Count, 2).End(xlUp).Row
For Each cell In Sheets("Pipeline").Range("E11:E" & lastSrcRw).SpecialCells(xlCellTypeVisible)
dstRw = dstRw + 1
cell.Copy Sheets(2).Range("A" & dstRw)
Next
'Loop through Sheet2 list, extract unique addresses
lastTmpRw = Sheets(2).Cells(Rows.Count, 1).End(xlUp).Row
For tmpRw = 1 To lastTmpRw
If WorksheetFunction.CountIf(Sheets(2).Range("A1:A" & tmpRw), _
Sheets(2).Range("A" & tmpRw)) < 2 Then
addylist_tmp = addylist_tmp & Sheets(2).Range("A" & tmpRw).Value & "; "
End If
Next tmpRw
'Clean up temp addylist
addylist = Left(addylist_tmp, Len(addylist_tmp) - 2)
'MsgBox addylist
'Processor List
Sheets(2).Cells.ClearContents
lastSrcRw = Sheets("Pipeline").Cells(Rows.Count, 4).End(xlUp).Row
For Each cell In Sheets("Pipeline").Range("C11:C" & lastSrcRw).SpecialCells(xlCellTypeVisible)
dstRw = dstRw + 1
cell.Copy Sheets(2).Range("D" & dstRw)
Next
'Loop through Sheet2 list, extract unique addresses
lastTmpRw = Sheets(2).Cells(Rows.Count, 4).End(xlUp).Row
For tmpRw = 1 To lastTmpRw
If WorksheetFunction.CountIf(Sheets(2).Range("D1:D" & tmpRw), "<>" & "<UNASSIGNED>") Then
If WorksheetFunction.CountIf(Sheets(2).Range("D1:D" & tmpRw), Sheets(2).Range("D" & tmpRw)) < 2 Then
addylist_tmp2 = addylist_tmp2 & Sheets(2).Range("D" & tmpRw).Value & "; "
End If
End If
Next tmpRw
'Clean up temp addylist
addylist2 = Left(addylist_tmp2, Len(addylist_tmp2) - 2)
最佳答案
您已经知道如何确定包含电子邮件地址的单元格范围。我的解决方案以此为基础创建一个 Dictionary
唯一的电子邮件地址,并且作为额外的奖励对您“认为”是电子邮件地址的文本字符串的格式进行一些快速验证。
首先,为了验证文本字符串以检查电子邮件地址格式,我创建了一个函数,它首先查找 @
字符,然后确保分隔符右侧的文本部分至少有一个点。
Private Function IsValidEmailFormat(ByVal thisText As String) As Boolean
IsValidEmailFormat = False
Dim tokens() As String
tokens = Split(thisText, "@")
If UBound(tokens) = 1 Then
'--- we found the domain separator, do we have a dot?
tokens = Split(tokens(1), ".")
If UBound(tokens) >= 1 Then
'--- we found the dot, looks like an email address
IsValidEmailFormat = True
End If
End If
End Function
Dictionary
。从给定的范围。你会看到在这个函数中,我们将给定的范围复制到一个基于内存的数组中(阅读更多关于它的信息
here)。之后,确保我们有一个有效的电子邮件格式的字符串,检查它是否已经在字典中——这就是我们可以保证我们有一个唯一电子邮件地址列表的方法。
Private Function GetUniqueEmails(ByRef thisRange As Range) As Dictionary
Dim theseEmails As Dictionary
Set theseEmails = New Dictionary
'--- copy to memory array
Dim thisData As Variant
thisData = thisRange
Dim i As Long
For i = LBound(thisData, 1) To UBound(thisData, 1)
If IsValidEmailFormat(thisData(i, 1)) Then
If Not theseEmails.Exists(thisData(i, 1)) Then
theseEmails.Add thisData(i, 1), i
End If
End If
Next i
Set GetUniqueEmails = theseEmails
End Function
Option Explicit
Sub TestMe()
Dim emails As Dictionary
Set emails = GetUniqueEmails(Sheet3.Range("A1:A5"))
'--- convert the emails to a semi-colon separated list for later use
Debug.Print "there are " & emails.Count & " emails in the list"
Dim emailList As String
Dim email As Variant
For Each email In emails.Keys
emailList = emailList & email & ";"
Next email
emailList = Left(emailList, Len(emailList) - 1) 'remove the trailing ";"
End Sub
Private Function GetUniqueEmails(ByRef thisRange As Range) As Dictionary
Dim theseEmails As Dictionary
Set theseEmails = New Dictionary
'--- copy to memory array
Dim thisData As Variant
thisData = thisRange
Dim i As Long
For i = LBound(thisData, 1) To UBound(thisData, 1)
If IsValidEmailFormat(thisData(i, 1)) Then
If Not theseEmails.Exists(thisData(i, 1)) Then
theseEmails.Add thisData(i, 1), i
End If
End If
Next i
Set GetUniqueEmails = theseEmails
End Function
Private Function IsValidEmailFormat(ByVal thisText As String) As Boolean
IsValidEmailFormat = False
Dim tokens() As String
tokens = Split(thisText, "@")
If UBound(tokens) = 1 Then
'--- we found the domain separator, do we have a dot?
tokens = Split(tokens(1), ".")
If UBound(tokens) >= 1 Then
'--- we found the dot, looks like an email address
IsValidEmailFormat = True
End If
End If
End Function
关于excel - WorksheetFunction.countif 标准不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56300253/
这是一个相当短的问题,可能很容易回答,但我自己目前无法回答: 示例数据: A B C 示例代码: With Sheet1 Debug.Print Application.WorksheetF
我想知道是否有人可以帮助我。我创建了一个非常简单的用户表单来记录信息。然而,我的问题是,当其中一个字段为空时,我收到一条错误消息: Sub or Function not defined. Priva
我正在尝试对 Sheet2 上的记录进行计数。 Dim wksdata As Worksheet Dim xyz as String Dim Time as String Set wksdata =
我在一大堆工作表上有一大堆数据,对于每个工作表,我想找到给定列中唯一值的计数。 当我在工作表中使用以下命令时,它可以完美运行 =SUM(IF(FREQUENCY(MATCH(REST!D2:D2225
因此,作为我正在处理的更大宏的一部分,我正在比较两个列表(简称 Omni 和 MV)。如果 Omni 列表中的值也在 MV 列表中,我想将该行从 Omni 复制到新的工作表中。我计划使用嵌套的 for
我在显示之前做了一些计算。 尽管值在范围内,“sum”函数仍输出 0。 sub CompileDashboard() For i = 3 To 100 If Sheets(1)
第一次发帖,请多多包涵。 我确定以前有人问过这个问题,但我找不到任何解决方案。 我正在尝试获取其中任何一个 If在 VBA 中工作的公式: ActiveCell.Value = Application
我要做的是遍历包含工作表名称的范围,如果单元格不为空,则添加 CountA 的结果count 变量的函数。 所以计数变量应该等于B9:B28范围内的非空白单元格的数量。在我正在迭代的工作表上,但奇怪的
我正在使用以下代码创建唯一电子邮件的电子邮件列表。该列表有很多重复项,但我只想要一次。有些行没有分配电子邮件,所以它们显示为 我想忽略这些。 我已经在另一个工作良好的工作表中使用了它,不同之处在于在这
Sub checkMe() Dim lastRow As Long Dim cell As Range lastRow = Range("A" & Rows.Count).End(xlUp).Row
这个问题在这里已经有了答案: VBA WorksheetFunction.Sum doesn't work with array but works with range? (2 个回答) 2年前关闭
我正在使用 WorksheetFunction.Transpose在 VBA 中将混合日期/字符串的一维数组转换为二维数组以写入工作表。 将我的 Windows 区域设置设置为 DMY ,被写回的日期
我正在尝试创建一个函数 MonstersInLevel(),它根据第一列的值过滤我的“LevelMonsters”命名范围的第二列。范围的第一列表示游戏关卡 ID,第二列表示出现在该关卡中的怪物 ID
我正在使用Application.match函数来查找我要查找的列标题的列号。如果所有标题都不匹配,我想要一个自定义的 pop MsgBox。 在到达IfError语句之前,Excel停止了我的程序并
鉴于 B2:D10 中的数据,我想使用 VBA 数组公式找到每行的平均值。遵循 Bill Jelen 编写的书籍示例 VBA Queue。 Name A B C Answer Ma
我正在尝试将文件保存到具有动态名称的文件夹和子文件夹中。 我的文件夹和子文件夹的结构是 Shared Drive -> Main -> Year (i.e. 2018) -> Month (i.e.
当我使用 Application.WorksheetFunction.max 时,我有一个填充了各种 double 值的数组函数 我收到一个值,但是当我查看数组的各个值时,我可以找到多个值,这些值大于
我需要申请MATCH函数到日期范围( 在 VBA 中。标准 MATCH 以单元格公式编写的函数确实按预期工作。)寻找对应日期为 <= 的最大可能索引查到的日期。这是我的代码和一个最小的工作示例: Fu
我有一个函数应该计算单元格数组中的总和。这个函数经常在另一个子程序中被调用,因此必须非常快。首先,我使用了一个 for 循环来获取数字,但它太慢了。然后我想使用一个工作表函数,但由于未知原因这不起作用
我正在使用具有 11 个工作表的 EXCEL 文件,在此配置中: VOL_CODE = 我要查找的代码。如果存在于工作表中,则应删除包含 VOL_CODE 的整行。 工作表: “ NEW VOL DA
我是一名优秀的程序员,十分优秀!