+ Reply to Thread
Results 1 to 5 of 5

How to join two different ranges and make it one range of cells

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-15-2012
    Location
    Jamaica
    MS-Off Ver
    Microsoft 365
    Posts
    244

    How to join two different ranges and make it one range of cells

    Hello,

    I am trying to join two different ranges to make one range of cells. To refer to range ("A4:A90") is pretty straight forward; however i am having a challenge referring to two different range to make one, for example: ("A4:A90, D5:D90").

    If CheckBox1.Value = True And CheckBox3.Value = True Then
        For Each cell In ThisWorkbook.Sheets("Sheet3").Range("K5:K2092", "K4181:K6267")
        'If cell.Value Like "?*@?*.?*" Then
        strto = strto & cell.Value & ";"
           
        Next cell
        If Len(strto) > 0 Then strto = Left(strto, Len(strto) - 1)
    End If
    The code i have above is only dumping ("K5:K2092") into the variable strto. How do i get both ranges ("K5:K2092", "K4181:K6267") to be loaded to the variable strto?

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,937

    Re: How to join two different ranges and make it one range of cells

    One possibility:
    If CheckBox1.Value = True And CheckBox3.Value = True Then
        With ThisWorkbook.Sheets("Sheet3")
              For Each AddrBlock in array("K5:K2092", "K4181:K6267")
                   For each cell in .Range(AddrBlock)
                        strto = strto & cell.Value & ";"   
                   Next cell
             Next AddrBlock
        End With
    
        If Len(strto) > 0 Then strto = Left(strto, Len(strto) - 1)
    End If
    Ben Van Johnson

  3. #3
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: How to join two different ranges and make it one range of cells

    Perhaps another
    Dim myCells As Range
        If CheckBox1.Value = True And CheckBox3.Value = True Then
            Set myCells = Union(Range("A4:A90"), Range("D5:D90"))    '<---change Ranges as required
            For Each cell In myCells
                'If cell.Value Like "?*@?*.?*" Then
                strto = strto & cell.Value & ";"
    
            Next cell
            If Len(strto) > 0 Then strto = Left(strto, Len(strto) - 1)
        End If
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  4. #4
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: How to join two different ranges and make it one range of cells

    Hi kmakjop

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Thanks for the Rep...

  5. #5
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: How to join two different ranges and make it one range of cells

    Hi kmakjop

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Join two ranges in formula
    By Jonathan9 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-04-2014, 11:38 AM
  2. [SOLVED] Find match between ranges, then sum their associated cells in a different range
    By burnettec in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 01-17-2013, 12:08 AM
  3. Join 2 Cell to make a new formula
    By racer25 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-21-2008, 09:14 AM
  4. How do I join a range of cells?
    By BPB in forum Excel General
    Replies: 1
    Last Post: 04-12-2006, 01:50 PM
  5. Add cells from a range based on 2 conditions from 2 other ranges
    By Kelly in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-07-2005, 03:05 PM

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