+ Reply to Thread
Results 1 to 8 of 8

Copy non-contiguous cells and varying data types

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-17-2004
    MS-Off Ver
    Office 2016
    Posts
    527

    Copy non-contiguous cells and varying data types

    I have a non-contiguous range of cells that contains Values, Formulas, Text or Dates. In some cases a field containing a value could instead contain a formula depending on who is filling out the form and/or what information is known. For example, a cell might contain a value, i.e. Utilities, and I might either know the total ($76,310), or I might need to perform a calculation right in the cell to obtain the total (=54236+9587+12487).

    My goal is to be able to copy the information contained in this non-contiguous range to the right some 52 columns (this is a safe temporary storage location) and then be able to copy it back should I need to.

    One other problem may be that the source cell might be a merged cell.

    Since I cannot determine whether the information is going to be a value or a formula, and I have some text and date formats to copy as well, is there some way to copy this range and keep the data regardless of format?

    My Range might look like: (F4, C5, D6:D7, D9, D13:D15, D17:D18, D22:D25, D27:D30)

    F4 is a date field, C5 is a merged cell holding text, D6 is the Utilities field described above. The other fields are all formatted as dollars or percentages.

  2. #2
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,088

    Re: Copy non-contiguous cells and varying data types

    A small sample file with dummy will help a lot, can you prepare it?

  3. #3
    Forum Contributor
    Join Date
    11-17-2004
    MS-Off Ver
    Office 2016
    Posts
    527

    Re: Copy non-contiguous cells and varying data types

    Yes, attached is the key worksheet. The range I'm trying to capture is identified as those cells with the yellowish fill and the purple fill. I'd like to take a snapshot of those cells and copy them to an area to the right, out of sight, or if possible, hold them in memory using the "Copy Worksheet Button"
    Attached Files Attached Files

  4. #4
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,088

    Re: Copy non-contiguous cells and varying data types

    Is the source data always the same?
    e.g. range = F4, C5, D6:D7, D9, D13:D15, D17:D18, D22:D25, D27:D30

  5. #5
    Forum Contributor
    Join Date
    11-17-2004
    MS-Off Ver
    Office 2016
    Posts
    527

    Re: Copy non-contiguous cells and varying data types

    The range remains the same, yes.

  6. #6
    Forum Contributor
    Join Date
    11-17-2004
    MS-Off Ver
    Office 2016
    Posts
    527

    Re: Copy non-contiguous cells and varying data types

    Any thoughts? I'm trying to copy the cell contents from one place to another without changing it from a formula to the results, etc. etc. I can't count on a cell to be only a value, text, a formula or what it will be. I want to copy whatever it is and keep all of the characteristics of the data itself, and not the cell format.

  7. #7
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,088

    Re: Copy non-contiguous cells and varying data types

    Certainly a very late answer but it could help
    Option Explicit
    
    Sub CopyData()
    Dim I  As Integer
    Dim WkVal, WkFor
    Dim WkRange
        WkRange = Array("F4", "C5", "D6", "D7", "D9", "D13", "D14", "D15", "D17", "D18", "D22", "D23", "D24", "D25", "D27", "D28", "D29", "D30")
        For I = 0 To UBound(WkRange)
            If (Range(WkRange(I)).HasFormula) Then
                WkFor = Range(WkRange(I)).Formula
                Cells(Range(WkRange(I)).Row, 52) = Range(WkRange(I)).Formula
            Else
                WkVal = Range(WkRange(I)).Value
                Cells(Range(WkRange(I)).Row, 52) = Range(WkRange(I)).Value
            End If
        Next I
    End Sub

  8. #8
    Forum Contributor
    Join Date
    01-25-2014
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    434

    Re: Copy non-contiguous cells and varying data types

    why not just create a copy of the Sheet, then you can copy stuff back from that sheet if you need to

+ 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. Copy Cells from non-contiguous selection
    By amartino44 in forum Excel General
    Replies: 4
    Last Post: 09-13-2013, 02:54 PM
  2. How to copy non contiguous cells to notepad
    By kati8293 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-26-2011, 06:03 PM
  3. Removal of varying types and number of unprinted characters
    By JP Romano in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-02-2011, 01:43 PM
  4. Copy and Paste an array (contiguous & non contiguous ranges)
    By Xrull in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-09-2010, 09:17 AM
  5. Copy Non Contiguous cells
    By jerryliang2k in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-28-2008, 02:01 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