Entering New Data from the TOP

lzweifel

Board Regular
Joined
Feb 21, 2006
Messages
213
Hi all,

I have a very simple spreadsheet but lots of data, 35,000 rows. Is there a way to enter data (new row) from the top?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
I would create a worksheet change event that inserted a new line at the specified row based upon input to a particular cell. Without detailed information, I cannot offer a more detailed response.

Additionally, you may need an workbook_open event to insert a new row at the specified row.

With more information, we could provide a specific code to allow this to happen.
 
Upvote 0
Hi, how can you help me with this?

Meaning, what (how) do I send to you to show you want I have and need? Basically it is just at current 10 columns of data and 25,000 rows. I have the data sorted currently in alphabetical Order, which I don't think will matter. I have (working on) conditional formats for those rows, and would like to just go to the first row (row 3) and enter in data and have another populate able it for the next row.
 
Last edited:
Upvote 0
Assuming that you will be entering data continuously, ie. Enter a value in a row with the last entry in column 10, column J, then the following code should work for you.
Code:
Option Explicit


Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 10 Then
Range("A3").EntireRow.Insert
Else
End If
Exit Sub


End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,892
Messages
6,122,112
Members
449,066
Latest member
Andyg666

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