Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to add a blank row to excel for every time the customer number
changes. I have a worksheet that contains customer numbers and invoices. So sometimes I have one customer for one invoice, most of the times, I have one customer for 5 to 10 invoices. So I need to add a blank row after a customer number changes. Please help... |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sub InsertRow_At_Change()
'Sandy Mann July 1st, 2007 Dim LastRow As Long Dim X As Long LastRow = Cells(Rows.Count, 1).End(xlUp).Row Application.ScreenUpdating = False For X = LastRow To 3 Step -1 If Cells(X, 1).Value < Cells(X - 1, 1).Value Then If Cells(X, 1).Value < "" Then If Cells(X - 1, 1).Value < "" Then Cells(X, 1).entirerow.Insert Shift:=xlDown End If End If End If Next X Application.ScreenUpdating = True End Sub Assumes customer numbers are in column A. Adjust to suit your case. Gord Dibben MS Excel MVP On Thu, 7 Aug 2008 16:06:05 -0700, Skyblue wrote: I need to add a blank row to excel for every time the customer number changes. I have a worksheet that contains customer numbers and invoices. So sometimes I have one customer for one invoice, most of the times, I have one customer for 5 to 10 invoices. So I need to add a blank row after a customer number changes. Please help... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding Blank Cells ? | New Users to Excel | |||
Automatically fill blank cell by same as just above record | Excel Discussion (Misc queries) | |||
identify a record that has a blank space in the data in a field. | Excel Discussion (Misc queries) | |||
Excel adding blank rows when sorting | Excel Discussion (Misc queries) | |||
automatically insert 8 blank rows between each record | Excel Discussion (Misc queries) |