+ Reply to Thread
Results 1 to 6 of 6

Upper and Lower case in a Count

  1. #1
    Registered User
    Join Date
    01-18-2007
    Posts
    17

    Upper and Lower case in a Count

    I have macro that counts an "x" in a particular cell on multiple sheets and then reports it back on one sheet. It is all input manually by several users, so sometimes they use Upper case (X) and sometimes they use Lower case (x). How do I make Excel ignore the case and count if it is upper and/or lower case?

  2. #2
    Registered User
    Join Date
    09-06-2006
    Location
    Italy
    Posts
    11
    Quote Originally Posted by CanMan12
    I have macro that counts an "x" in a particular cell on multiple sheets and then reports it back on one sheet. It is all input manually by several users, so sometimes they use Upper case (X) and sometimes they use Lower case (x). How do I make Excel ignore the case and count if it is upper and/or lower case?
    I think we need the macro to figure out the best choice.

    Can you copy it here?

    Thanks.

  3. #3
    Registered User
    Join Date
    01-18-2007
    Posts
    17
    Function GetCnt(st As String)
    Application.Volatile
    Dim cnt As Long
    cnt = 0
    For i = 2 To Sheets.Count
    If Sheets(i).Range(Application.Caller.Address) = st Then cnt = cnt + 1
    Next i
    GetCnt = cnt
    End Function

  4. #4
    Registered User
    Join Date
    09-06-2006
    Location
    Italy
    Posts
    11
    Quote Originally Posted by CanMan12
    Function GetCnt(st As String)
    Application.Volatile
    Dim cnt As Long
    cnt = 0
    For i = 2 To Sheets.Count
    If Sheets(i).Range(Application.Caller.Address) = st Then cnt = cnt + 1
    Next i
    GetCnt = cnt
    End Function
    Ok,

    change that function into:
    Please Login or Register  to view this content.
    and let me know if it worked.


    ciao

  5. #5
    Registered User
    Join Date
    01-18-2007
    Posts
    17

    Thumbs up

    Worked like a charm! Thank you very much!

  6. #6
    Registered User
    Join Date
    09-06-2006
    Location
    Italy
    Posts
    11
    Quote Originally Posted by CanMan12
    Worked like a charm! Thank you very much!
    You are welcome.

    ciao

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1