Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / General Excel Questions / May 2008

Tip: Looking for answers? Try searching our database.

Formula/Macro to place data on the next blank row

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Amotif - 11 May 2008 07:38 GMT
Hi everyone,
I'll be grateful if someone can help me set up a formula/macro through which
data can be placed on the next blank row.  My intention is to create a
database of info and update the list sometime before I choose new dat (ie,
the existing quotation details can be saved in the database before the new
quotation is generated).
Thanks.
Gary''s Student - 11 May 2008 12:30 GMT
The following takes user input and placesit in the next available cell in
column A.  You can adapt the technique to your needs:

Sub hfdsjf()
n = Cells(Rows.Count, "A").End(xlUp).Row + 1
v = Application.InputBox(prompt:="enter value", Type:=2)
Cells(n, "A") = v
End Sub

Signature

Gary''s Student - gsnu200785

> Hi everyone,
> I'll be grateful if someone can help me set up a formula/macro through which
[quoted text clipped - 3 lines]
> quotation is generated).
> Thanks.
Amotif - 12 May 2008 03:10 GMT
Great!
Could this also be applied to place data in a number of rows (ie columns A
to X) in one hit?

> The following takes user input and placesit in the next available cell in
> column A.  You can adapt the technique to your needs:
[quoted text clipped - 12 lines]
> > quotation is generated).
> > Thanks.

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.