Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default A general question about editing current list via UserForm

I wished I could do this in Access, but I'm the only one in the dept
who has it. And, what I'm designing will be used by others. So, I have
to try to do this within Excel.

The user will flip through a report at the end of the day. He will
enter PO numbers on a UserForm that will cause the line with that PO#
to be moved to another sheet. I think I can get this part done (albeit
with crude coding). While flipping through the report, the user might
also need to edit existing lines. In my dreamworld, I would like to
have a different TextBox in that UserForm where the user can enter a
PO#, then click a button next to it that will let the user edit any of
the cells in that line the PO is in.

When that button to edit is clicked, I would like for any of the
TextBoxes already filled in on the original UserForm to be applied to
their appropriate destinations. Then another UserForm comes up, with
all the fields populated with the data on that PO line just requested.
Something tells me this is either not doable, or else will require some
rapid expansion of knowledge on my part.

Once the editing is completed, the 1st UserForm comes back for more
entries of lines to move, or edit. Again, the easy part.

Before I decide how much time I will spend on this part of my overall
project right now, I would like anyone to please let me know 1st of all
if any of my hopeful assumptions above are out of the question. Can I
have a UserForm come up where the fields will be populated with a
current record based on the user's selection?

If not, maybe you can give me an idea of key terminology I need to
understand before trying to get this done in another way. Just trying
to get a feel for how much time I will need to devote to this.

It may be alot of info I'm asking for. But, if anyone cares to chime
in, I would appreciate it.
Thanks
J.O.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default A general question about editing current list via UserForm

It should be very doable.


http://support.microsoft.com/default.aspx?kbid=161514
XL97: How to Use a UserForm for Entering Data


http://support.microsoft.com/default.aspx?kbid=213749
XL2000: How to Use a UserForm for Entering Data


http://j-walk.com/ss/excel/tips/tip84.htm


See this tutorial here
http://www.dicks-blog.com/excel/2004...g_userfor.html


http://support.microsoft.com/default...b;en-us;829070
How to use Visual Basic for Applications examples to control UserForms in
Microsoft Excel




XL97: How to Use a UserForm for Entering Data (Q161514)
http://support.microsoft.com/?id=161514


XL2000: How to Use a UserForm for Entering Data (Q213749)
http://support.microsoft.com/?id=213749


Here are some other sources of information:


http://www.microsoft.com/ExcelDev/Articles/sxs11pt1.htm
Lesson 11: Creating a Custom Form
Excerpted from Microsoft® Excel 97 Visual Basic® Step by Step.


How to use Visual Basic for Applications examples to control UserForms in
Microsoft Excel
http://support.microsoft.com/default...b;en-us;829070


http://support.microsoft.com/?id=168067
File Title: Microsoft(R) Visual Basic(R) for Applications Examples for
Controlling UserForms in Microsoft Excel 97
File Name: WE1163.EXE
File Size: 161742 bytes
File Date: 05/08/97
Keywords: kbfile
Description: This Application Note is an introduction to manipulating
UserForms in Microsoft Excel 97. It includes examples and Microsoft Visual
Basic for Applications macros that show you how to take advantage of the
capabilities of UserForms and use each of the ActiveX controls that are
available for UserForms


Peter Aiken Articles:
Part I
http://msdn.microsoft.com/library/en.../Introductiont...
Part II
http://msdn.microsoft.com/library/en.../Introductiont...


http://www.bmsltd.ie/Excel/Default.htm
http://maths.sci.shu.ac.uk/units/ioa/ <- Excel VBA tutorial


http://support.microsoft.com/default...;EN-US;Q168067


Regards,
Tom Ogilvy



"JulieD" <Jul...@

"excelnut1954" wrote in message
oups.com...
I wished I could do this in Access, but I'm the only one in the dept
who has it. And, what I'm designing will be used by others. So, I have
to try to do this within Excel.

The user will flip through a report at the end of the day. He will
enter PO numbers on a UserForm that will cause the line with that PO#
to be moved to another sheet. I think I can get this part done (albeit
with crude coding). While flipping through the report, the user might
also need to edit existing lines. In my dreamworld, I would like to
have a different TextBox in that UserForm where the user can enter a
PO#, then click a button next to it that will let the user edit any of
the cells in that line the PO is in.

When that button to edit is clicked, I would like for any of the
TextBoxes already filled in on the original UserForm to be applied to
their appropriate destinations. Then another UserForm comes up, with
all the fields populated with the data on that PO line just requested.
Something tells me this is either not doable, or else will require some
rapid expansion of knowledge on my part.

Once the editing is completed, the 1st UserForm comes back for more
entries of lines to move, or edit. Again, the easy part.

Before I decide how much time I will spend on this part of my overall
project right now, I would like anyone to please let me know 1st of all
if any of my hopeful assumptions above are out of the question. Can I
have a UserForm come up where the fields will be populated with a
current record based on the user's selection?

If not, maybe you can give me an idea of key terminology I need to
understand before trying to get this done in another way. Just trying
to get a feel for how much time I will need to devote to this.

It may be alot of info I'm asking for. But, if anyone cares to chime
in, I would appreciate it.
Thanks
J.O.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default A general question about editing current list via UserForm

Thanks Tom.
So, I take it I CAN bring up a UserForm, and have the fields poplulated
with a record already on the worksheet.
Thanks for all the info. Appreciate it.

J.O.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default A general question about editing current list via UserForm

If you write the code to do it, sure. That is one of the prime functions
of userforms.

--
Regards,
Tom Ogilvy


"excelnut1954" wrote in message
ups.com...
Thanks Tom.
So, I take it I CAN bring up a UserForm, and have the fields poplulated
with a record already on the worksheet.
Thanks for all the info. Appreciate it.

J.O.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default A general question about editing current list via UserForm

Thanks. I was under the impression that the data could flow from the
userform to the sheet, not the other way around.

Thanks for the help.
J.O.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default A general question about editing current list via UserForm

If you link cells to textboxes, it is a two way street. However, linking
doesn't appear to be appropriate here since you are using it as an interface
to both retrieve and write data to changing locations. So you just write
the code to do what is appropriate at the time.


John Walkenbach has a free addin that performs like the Form option under
the Data menu. He has enhanced the functionality.

http://www.j-walk.com/ss/excel/tips/tip42.htm

He charges $20 to get access to the code I believe, but if you just want to
see what a userform can do in a database situation somewhat similar to what
you describe, you can download and try this out. It may even be what you
want.

--
Regards,
Tom Ogilvy


"excelnut1954" wrote in message
oups.com...
Thanks. I was under the impression that the data could flow from the
userform to the sheet, not the other way around.

Thanks for the help.
J.O.



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default A general question about editing current list via UserForm

Thanks Tom
I'll give it a look see.

J.O.

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
General question - editing a post annoni Excel Discussion (Misc queries) 2 June 13th 08 05:04 PM
Excel macro, editing recorded cell.. not current TroyT Excel Programming 1 January 12th 06 01:26 PM
Quick, general userform question VB Newbie[_2_] Excel Programming 6 November 20th 05 01:16 AM
Userform Editing/Access John Baker Excel Programming 1 October 9th 04 09:46 AM
General Question Squid[_2_] Excel Programming 3 January 12th 04 07:25 PM


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