VBA macro: insert row if condition is met and apply formulae

CXsjr

New Member
Joined
Aug 14, 2024
Messages
3
Office Version
  1. 365
Platform
  1. MacOS
Good morning folks,

I'm new here and have only 'google level' experience of VBA, and although I usually manage to cobble together a code to get it to do what I want, this time I'm really struggling.

I have a huge set of data relating to past travels which I want to convert each time I export the data to another workbook. I've included a picture of how the data currently looks, and how I would like it to look once I've run the VBA code.

The data lists hundreds of journeys. Some journeys were direct, but some journeys are "from A to C via B" etc.

I'm looking for VBA that will count the rows, then cycle through each row of data and where there is an entry in the via field (column F in this instance), it will insert a row below this, copy all of the data from Columns A, B and C then essentially manipulate the data in columns D, E and F.

As an example: a record for a journey from D to E via F, will become two records, one from D to F, the second from F to E.

I'm guessing the latter part of the code will involve using "activecell.value" and "offset" but try as I might, I just can't get it to work. I've had success with inserting rows based on criteria before, but I simply can't pull together inserting rows and manipulating the data.

The top row contains column headings.

I hope this all makes sense although I'll be more than happy to provide further explanations if needed.

I'd really appreciate any assistance that anyone can offer, and my sincerest thanks in advance for taking the time out of your day to help if you can.

Best regards, Stu
 

Attachments

  • Screenshot 2024-08-14 at 12.25.25.jpeg
    Screenshot 2024-08-14 at 12.25.25.jpeg
    190.7 KB · Views: 8

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.

I assume your data starts in cell A2.
The results will start in cell H2.

Try this:
VBA Code:
Sub InsertRow()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
  
  a = Range("A2:F" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1) + WorksheetFunction.CountA(Range("F:F")), 1 To UBound(a, 2))
  
  For i = 1 To UBound(a, 1)
    If a(i, 6) = "" Then
      'If the cell in F is empty, then simply pass the data.
      k = k + 1
      For j = 1 To UBound(a, 2)
        b(k, j) = a(i, j)
      Next
    Else
      'If cell F has data then create 2 records
      
      'Record 1
      k = k + 1
      For j = 1 To 4
        b(k, j) = a(i, j)
      Next
      b(k, 5) = a(i, 6)       'change To by Via
      
      'Record 2
      k = k + 1
      For j = 1 To 3
        b(k, j) = a(i, j)
      Next
      b(k, 4) = a(i, 6)       'change From by Via
      b(k, 5) = a(i, 5)       'change To by From
    End If
  Next
  
  Range("H2").Resize(UBound(b, 1), UBound(b, 2)).Value = b
End Sub

I added some notes in the macro to explain a bit what the code does.

----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
 
Last edited:
Upvote 1
Solution
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.

I assume your data starts in cell A2.
The results will start in cell H2.

Try this:
VBA Code:
Sub InsertRow()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
 
  a = Range("A2:F" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1) + WorksheetFunction.CountA(Range("F:F")), 1 To UBound(a, 2))
 
  For i = 1 To UBound(a, 1)
    If a(i, 6) = "" Then
      'If the cell in F is empty, then simply pass the data.
      k = k + 1
      For j = 1 To UBound(a, 2)
        b(k, j) = a(i, j)
      Next
    Else
      'If cell F has data then create 2 records
     
      'Record 1
      k = k + 1
      For j = 1 To 4
        b(k, j) = a(i, j)
      Next
      b(k, 5) = a(i, 6)       'change To by Via
     
      'Record 2
      k = k + 1
      For j = 1 To 3
        b(k, j) = a(i, j)
      Next
      b(k, 4) = a(i, 6)       'change From by Via
      b(k, 5) = a(i, 5)       'change To by From
    End If
  Next
 
  Range("H2").Resize(UBound(b, 1), UBound(b, 2)).Value = b
End Sub

I added some notes in the macro to explain a bit what the code does.

----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
A million thanks - I’m working until late tonight but I’ll try it in the morning; in the meantime, I really appreciate your help. I’ll keep you posted!
 
Upvote 0
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.

I assume your data starts in cell A2.
The results will start in cell H2.

Try this:
VBA Code:
Sub InsertRow()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
 
  a = Range("A2:F" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1) + WorksheetFunction.CountA(Range("F:F")), 1 To UBound(a, 2))
 
  For i = 1 To UBound(a, 1)
    If a(i, 6) = "" Then
      'If the cell in F is empty, then simply pass the data.
      k = k + 1
      For j = 1 To UBound(a, 2)
        b(k, j) = a(i, j)
      Next
    Else
      'If cell F has data then create 2 records
     
      'Record 1
      k = k + 1
      For j = 1 To 4
        b(k, j) = a(i, j)
      Next
      b(k, 5) = a(i, 6)       'change To by Via
     
      'Record 2
      k = k + 1
      For j = 1 To 3
        b(k, j) = a(i, j)
      Next
      b(k, 4) = a(i, 6)       'change From by Via
      b(k, 5) = a(i, 5)       'change To by From
    End If
  Next
 
  Range("H2").Resize(UBound(b, 1), UBound(b, 2)).Value = b
End Sub

I added some notes in the macro to explain a bit what the code does.

----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --

This worked perfectly ... thank you so much, I am extremely appreciative!
 
Upvote 0

Forum statistics

Threads
1,221,283
Messages
6,159,022
Members
451,531
Latest member
Ian Denney

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