+ Reply to Thread
Results 1 to 12 of 12

Mixed case requirements in same cell!

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    03-22-2006
    Location
    UK
    MS-Off Ver
    Office 2013
    Posts
    275

    Mixed case requirements in same cell!

    Hi all

    I have this code which is working fine but needs adjusting to take into account recent changes.

    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
        Dim cell    As Range
    
        Application.EnableEvents = False
        
        Select Case Sh.CodeName
            Case "Sheet4"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 3, 4, 6, 8, 9, 13, 15, 16
                            cell.Value = StrConv(cell.Text, vbProperCase)
                        Case 10, 17
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
    
            Case "Input1"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 5, 13
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
    
            Case "Sheet7"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 3, 6
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
            End Select
        Application.EnableEvents = True
    
    End Sub
    The change only affects "Sheet4 - Column 4" at the moment.

    I need the case change to handle the following so that:

    Smith (fs) appears as Smith (FS) not as Smith (fs)
    which is how the code currently handles the last 4 characters i.e. (fs).

    TIA ...spellbound

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,078

    Re: Mixed case requirements in same cell!

    Why not do aText to Columns so the code does its job correctly on the surnames. As initials are isolated use a function to convert them to uppercase. Then concatenate the results.
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  3. #3
    Forum Contributor
    Join Date
    03-22-2006
    Location
    UK
    MS-Off Ver
    Office 2013
    Posts
    275

    Re: Mixed case requirements in same cell!

    Had already thought of that but would prefer a VBA solution if at all possible.

    These are not initials but a suffix added to some of the surname denoting a secondary account.

    Any takers on the VBA solution?

    spellbound

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Mixed case requirements in same cell!

    Hello Spellbound,

    I am not sure if I have placed the call to the macro in the correct place in your macro. It is in blue to make it easy see and change it if you need to.

    Macro to convert characters in parentheses to upper case
    Copy this code into a Standard VBA module.
    Sub Macro1(ByRef Rng As Range)
    
      Dim Cell As Range
      Dim Matches As Object
      Dim RE As Object
      
        Set RE = CreateObject("VBScript.RegExp")
        RE.Global = False
        RE.Pattern = "\(\w+\)"
          
         'Find the first group of characters in parentheses and make them upper case
          For Each Cell In Rng.Cells
            Set Matches = RE.Execute(Cell)
            If Matches.Count > 0 Then
               Cell = RE.Replace(Cells, UCase(Matches(0)))
            End If
          Next Cell
    
        Set RE = Nothing
        Set Matches = Nothing
      
    End Sub
    Your Macro with the change
    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
        Dim cell  As Range
    
        Application.EnableEvents = False
        
        Select Case Sh.CodeName
            Case "Sheet4"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 3, 4, 6, 8, 9, 13, 15, 16
                            If Case = 4 Then Call Macro1(Target)
                            cell.Value = StrConv(cell.Text, vbProperCase)
                        Case 10, 17
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
    
            Case "Input1"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 5, 13
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
    
            Case "Sheet7"
                For Each cell In Target.Cells
                    Select Case cell.Column
                        Case 3, 6
                            cell.Value = StrConv(cell.Text, vbUpperCase)
                    End Select
                Next cell
            End Select
        Application.EnableEvents = True
    
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  5. #5
    Forum Contributor
    Join Date
    03-22-2006
    Location
    UK
    MS-Off Ver
    Office 2013
    Posts
    275

    Re: Mixed case requirements in same cell!

    Hi Leith

    Thanks for the Macro and code.

    I pasted the Macro into a standard module and added the line of code to the original macro which is in 'This Workbook'.

    However, when I try to run the code, the line is in red and I get the following error message against the new line of code:

    Compile Error - Syntax Error
    Your new line of code appears to be in the right place, in that it relates to Column D of Sheet4.

    Any ideas ...spellbound

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Mixed case requirements in same cell!

    Hello Spellbound,

    The Target is passed into the Workbook_SheetChange event ByVal. The new macro takes the Range ByRef. Change the offending line of code to this...
    If Case = 4 Then Call Macro1(Sheets(Sh.CodeName).Range(Target.Address))

+ 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