Possible to use VBA to summarise a data table in order of data entry?

Peter1986

New Member
Joined
Jan 22, 2020
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hi,

Please can I get advice on whether it is possible to use VBA to create a summary table from a 2 column dataset as follows:
  • The input data is a simple list of integer 'values' between 1 and 15.
  • The output data should count the number of identical values in a row, give the start and end point of those values, then once the value changes, start counting again. Please see the image below.
  • Sample Results Sheet.JPG

  • So in the example above, the first three values are '3', so the first entry in the output states that the value of 3 occurs between the first and third entry, the fourth and fifth are value '4', the 6th and 7th value 3 etc,
I am a 3rd year engineering student and have a large dataset (up to 100,000 rows) to sort, and hence any advice on whether this is likely to be possible would be greatly appreciated.

Many Thanks in advance

Peter
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi, Peter1986
Welcome to the Board
Try this:
VBA Code:
Sub a1121447a()
'https://www.mrexcel.com/board/threads/possible-to-use-vba-to-summarise-a-data-table-in-order-of-data-entry.1121447/

Dim i As Long, j As Long, k As Long
Dim va

va = Range("A1:B" & Cells(Rows.count, "A").End(xlUp).Row)
ReDim vb(1 To UBound(va, 1), 1 To 4)

For i = 3 To UBound(va, 1)
    j = i
    Do
        i = i + 1
        If i > UBound(va, 1) Then Exit Do
    Loop While va(i, 2) = va(i - 1, 2)
    i = i - 1
    k = k + 1
    
    vb(k, 1) = va(j, 1)
    vb(k, 2) = va(i, 1)
    vb(k, 3) = va(i, 2)
    vb(k, 4) = i - j + 1
    
Next

Range("E3").Resize(k, 4) = vb
End Sub
 
Upvote 0
This will work with your example.

VBA Code:
Dim sht As Worksheet, rngSource As Range, rngDest As Range
Dim arrNumbers(3) As Integer

Set sht = Worksheets("Numbers")

Set rngSource = sht.Range("A3")

Set rngDest = sht.Range("E3:H3")

arrNumbers(0) = rngSource.Value
arrNumbers(1) = rngSource.Value
arrNumbers(2) = rngSource.Offset(0, 1).Value
arrNumbers(3) = 1

Set rngSource = rngSource.Offset(1, 0)

Do Until rngSource.Value = ""

    If rngSource.Offset(0, 1).Value <> arrNumbers(2) Then
        rngDest.Value = arrNumbers
        Set rngDest = rngDest.Offset(1, 0)
    
            
        arrNumbers(0) = rngSource.Value
        arrNumbers(1) = rngSource.Value
        arrNumbers(2) = rngSource.Offset(0, 1).Value
        arrNumbers(3) = 1
        
    Else
    
        arrNumbers(1) = rngSource.Value
        arrNumbers(3) = arrNumbers(3) + 1
    
    
    End If
    


    Set rngSource = rngSource.Offset(1, 0)
Loop

rngDest.Value = arrNumbers
 
Upvote 0
You're welcome, glad to help, & thanks for the feedback.:)
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,655
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top