phamchin

CountCharInCell

Feb 21st, 2023
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Function CountCharInCell(myRange As Range, myChar As String) As Integer
  2. Dim i As Integer
  3. Dim myString As String
  4. Dim charCount As Integer
  5.  
  6. ' Lấy giá trị của ô bảng tính
  7. myString = myRange.Value
  8.  
  9. ' Đếm số lần xuất hiện của ký tự trong chuỗi
  10. For i = 1 To Len(myString)
  11. If Mid(myString, i, 1) = myChar Then
  12. charCount = charCount + 1
  13. End If
  14. Next i
  15.  
  16. ' Trả về số lần xuất hiện của ký tự trong chuỗi
  17. CountCharInCell = charCount
  18. End Function
  19.  
Tags: excel
Add Comment
Please, Sign In to add comment