Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 -- Gary''s Student - gsnu200785 "Amotif" wrote: 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Great!
Could this also be applied to place data in a number of rows (ie columns A to X) in one hit? "Gary''s Student" wrote: 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 -- Gary''s Student - gsnu200785 "Amotif" wrote: 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to delete blank rows in a data range | Excel Discussion (Misc queries) | |||
place a blank row above certain cells | Excel Worksheet Functions | |||
Place a Bottom Border in a Table via a Macro | Excel Discussion (Misc queries) | |||
How do I create a Macro to sort data and insert blank rows & subto | Excel Worksheet Functions | |||
How do I create a macro that will compare columns and place data | Excel Worksheet Functions |