Look for next row for automatic data entry

Elfiraon

New Member
Joined
Sep 10, 2014
Messages
31
Hi!

So, I have one excel file where in one cell I enter my date (i.e. data). Then I have this other excel file where I want to populate the dates based on the entry. I'm trying to figure out the VBA/Macro for this, the only entry for the second excel file is the data (i.e. one column), and I want my data to go to the next available/empty row it finds to populate.

Any help is appreciated, thanks!
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Well, to get the lastrow on sheet1 for example, use
Code:
lastrow = Worksheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Row

If you provide ome clarity as to your request, we can help with more of the code
 
Upvote 0
My first file I have contains the entry cell called "Entry.xlxs", below is a screenshot of the section with cell I2 for entry.


Then on the second file, I have column A with a set of data in which once someone enters the date on cell I2 on the previous file, it would then populate on this column from the file called "Records.xlxs"


I'm still trying to figure out the code for it! thanks!
 
Upvote 0

Forum statistics

Threads
1,206,971
Messages
6,075,925
Members
446,170
Latest member
zzzz02

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