Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default need to build a "form" that dumps data entered into another worksh

I know this is possible in Access however not everyone in our office has
Access. So is it possible to use worksheet 1 to build a "form" that dumps
entered data into a database on worksheet 2. The "form" in worksheet 1 needs
to be printable and data in worksheet 2 needs to be stored. Thanks for your
help in advance :)
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,344
Default need to build a "form" that dumps data entered into another worksh

Hi,

You could do this with VBA but we would need to know which cells in the form
sheet need to go to which cells in the Database sheet. If sheet1 has the
form and sheet2 the database then a lot of lines such as this. Where you are
sending the data from cell C12 on the form to first empty cell in column A of
the database sheet.

Sub DumpData()
Sheets("Sheet2").Range("A2").End(xlDown).Offset(1, 0) =
Sheets("Sheet1").Range("C12")
.....
End Sub

--
Thanks,
Shane Devenshire


"ccreed61" wrote:

I know this is possible in Access however not everyone in our office has
Access. So is it possible to use worksheet 1 to build a "form" that dumps
entered data into a database on worksheet 2. The "form" in worksheet 1 needs
to be printable and data in worksheet 2 needs to be stored. Thanks for your
help in advance :)

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculation Using "Most Current Data Entered" igotboost Excel Worksheet Functions 7 June 18th 08 09:01 PM
any formula to convert numbers in word form, e.g. "2" as "Two"? Neeraj Excel Worksheet Functions 1 May 26th 08 01:03 PM
function to return day in the form "Monday", "Tuesday" etc given . MTro Excel Worksheet Functions 2 October 3rd 07 09:49 AM
"Abnormal behaviour" data entry form JR Hester Excel Discussion (Misc queries) 5 January 4th 07 11:04 PM
bunch of "yes" or "no" entered in row, output 1 if a single yes dan2201 Excel Worksheet Functions 9 September 7th 06 05:05 PM


All times are GMT +1. The time now is 02:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"