Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Data entry form

The data entry form adds the line of data to the bottom of the database
worksheet. What I'm wondering is if the data entry form can add it to
the top, so that the first record entry is at the bottom, and the most
recent listed at the top.

Since my intuition is that the data entry form cannot do this, I'm
wondering if I can have a data entry worksheet and program a macro or
some other method to have the database reversed on a different
worksheet. The boss wants to view the most recently added record at
the top of the worksheet, but someone else is entering the data, so if
I can at least get Excel to display a worksheet opposite of how the
data is entered, that would satisfy his needs.

Any ideas?

Thanks!

BTW, using Excel 2003 SP1.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Data entry form

You are going to have to learn a little about VB first but this is what you
need to do

Access the VB editor ALT & F11

Create a userform and then add the required field for your data, do this by
creating a number of textboxs onto your userfom and stick a command button
onit.

Insert a code like this within the userform, to access where to enter code
double click the userform

Sub commandbutton1_click

Rows("1:1").Select
Selection.Insert Shift:=xlDown
range("A1).value = textbox1.value

end sub

I know its not much but it will give you a start

If you have any problems contact me at




Within Excel create

--
Message posted via
http://www.officekb.com
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
Data Entry Form Gazz_85[_2_] Excel Discussion (Misc queries) 3 September 11th 09 01:18 PM
data entry form AJ Excel Discussion (Misc queries) 2 March 4th 09 01:36 PM
Data Entry Form (similar to default Excel DataForm) tonydm Excel Programming 0 October 11th 05 07:59 PM
Data Entry Form Dennis the Safety Nerd Excel Programming 4 August 19th 05 10:25 PM
Help with data entry form please Devon T. Sowell Excel Programming 4 February 1st 04 04:28 PM


All times are GMT +1. The time now is 02:43 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"