Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel Multisheets, submit button to update database sheet

Greetings,
Anyone tell me the best way for this outcome? In Excel i have two
worksheets

(T)=data field sheet
(X)Datebase sheet

(T) is the only sheet where a user inputs data.

would like a submit button on (T) so that when all inputed data from
all rows in column A (T) is submitted it will then insert a new column
B in (X)

I guess this is visual basic type stuff not sure though, any help is
appreciated.

joe

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 142
Default Excel Multisheets, submit button to update database sheet

This will copy and insert a row before column B:B in sheet X
placing the latest data to the left of previous data.

There is also a Clear contents for column A:A in sheet T after data has been
inserted, just remove the " ' " in front of the 'Selection.ClearContents
to activate it.
This is a recorded macro ( you could do it yourself, by turning on the
record macro button while you do what you want done, then assign it to any
button or autoshape)



Sub submit()
Columns("A:A").Select
Selection.Copy
Sheets("X").Select
Columns("B:B").Select
Selection.Insert Shift:=xlToRight
Sheets("T").Select
Columns("A:A").Select
Application.CutCopyMode = False
'Selection.ClearContents
Range("A1").Select
End Sub


" wrote:

Greetings,
Anyone tell me the best way for this outcome? In Excel i have two
worksheets

(T)=data field sheet
(X)Datebase sheet

(T) is the only sheet where a user inputs data.

would like a submit button on (T) so that when all inputed data from
all rows in column A (T) is submitted it will then insert a new column
B in (X)

I guess this is visual basic type stuff not sure though, any help is
appreciated.

joe


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
Submit Button? Bip Excel Discussion (Misc queries) 1 January 15th 07 12:32 PM
How do I create a submit button to an email address in excel? farhospurchase Excel Discussion (Misc queries) 1 August 1st 06 08:56 PM
Submit Button edwardpestian Excel Worksheet Functions 1 April 27th 06 08:24 PM
How do you set up a submit button to attach worksheet in email? [email protected] Excel Discussion (Misc queries) 1 September 28th 05 06:43 PM
Form with submit button Hooter Excel Worksheet Functions 0 June 8th 05 07:12 PM


All times are GMT +1. The time now is 02:13 PM.

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

About Us

"It's about Microsoft Excel"