Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Submit Data form in one tab to another tab in same excel?

Looking for a way to have a form setup on one tab and have a submit button
that would then push that data to the next tab in row format. Can this be
done?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 135
Default Submit Data form in one tab to another tab in same excel?

On May 5, 4:12*pm, ksee wrote:
Looking for a way to have a form setup on one tab and have a submit button
that would then push that data to the next tab in row format. Can this be
done?


Ksee,

Yes, this can be done. Here is a simple example which inserts the
value from the text box on the user form into cell A1 on the first
worksheet. The code executes when you click the command button on the
user form.

Best,

Matthew Herbert


Private Sub CommandButton1_Click()

With UserForm1
Worksheets(1).Range("a1").Value = .TextBox1.Value
End With

Unload UserForm1

End Sub
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
Creating a 'Submit' button with in an excel form that will email f kuya Excel Programming 1 May 4th 07 01:17 AM
Excel VB: Problem Clicking Submit In Online Form [email protected] Excel Programming 0 December 14th 06 06:05 PM
saveto or Submit Form functionality in Excel MLyons10 Excel Worksheet Functions 0 March 29th 06 05:47 PM
Excel VBA to click 'submit' on form Nixter Excel Programming 1 October 13th 05 12:20 AM
I wanta infopath form to submit data to an excel databse file uCHE Excel Discussion (Misc queries) 0 April 26th 05 05:56 PM


All times are GMT +1. The time now is 08:41 AM.

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"