Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Information about excel vs db tools

Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Information about excel vs db tools

If you used a userform to allow the user to enter data, then pulling up
existing data, allowing the user to edit it and writing it back should be
trivial.

If you formatted a worksheet for this purpose, again, adding code for the
additional functionality should be very easy.

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Information about excel vs db tools

Ok. mmm, haven't done that. Any quick tutorials?



Tom Ogilvy wrote:
If you used a userform to allow the user to enter data, then pulling up
existing data, allowing the user to edit it and writing it back should be
trivial.

If you formatted a worksheet for this purpose, again, adding code for the
additional functionality should be very easy.

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Information about excel vs db tools

Existing code to write data
range("A1").Value = Userform1.Textbox1.Text


Now add additional functionality

to retrieve date
Userform1.Textbox1.Text

after it is edited
range("A1").Value = Userform1.Textbox1.Text


obviously, there is more involved, but with no details, this should give you
the idea.

--
Regards,
Tom Ogilvy



wrote in message
ups.com...
Ok. mmm, haven't done that. Any quick tutorials?



Tom Ogilvy wrote:
If you used a userform to allow the user to enter data, then pulling up
existing data, allowing the user to edit it and writing it back should be
trivial.

If you formatted a worksheet for this purpose, again, adding code for the
additional functionality should be very easy.

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Information about excel vs db tools

Thank you.

I also see that you have written a number of responses about this
subject. A search of 'editing userform data' brought out a number of
informational responses.

I need to digest all of this information but it looks very capable of
being done in excel.

Thank you,

Tom Ogilvy wrote:
Existing code to write data
range("A1").Value = Userform1.Textbox1.Text


Now add additional functionality

to retrieve date
Userform1.Textbox1.Text

after it is edited
range("A1").Value = Userform1.Textbox1.Text


obviously, there is more involved, but with no details, this should give you
the idea.

--
Regards,
Tom Ogilvy



wrote in message
ups.com...
Ok. mmm, haven't done that. Any quick tutorials?



Tom Ogilvy wrote:
If you used a userform to allow the user to enter data, then pulling up
existing data, allowing the user to edit it and writing it back should be
trivial.

If you formatted a worksheet for this purpose, again, adding code for the
additional functionality should be very easy.

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.






  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Information about excel vs db tools

to retrieve date
Userform1.Textbox1.Text

should have been

to retrieve date
Userform1.Textbox1.Text = Range("A1").Value

--
Regards,
Tom Ogilvy


"Tom Ogilvy" wrote in message
...
Existing code to write data
range("A1").Value = Userform1.Textbox1.Text


Now add additional functionality

to retrieve date
Userform1.Textbox1.Text

after it is edited
range("A1").Value = Userform1.Textbox1.Text


obviously, there is more involved, but with no details, this should give
you the idea.

--
Regards,
Tom Ogilvy



wrote in message
ups.com...
Ok. mmm, haven't done that. Any quick tutorials?



Tom Ogilvy wrote:
If you used a userform to allow the user to enter data, then pulling up
existing data, allowing the user to edit it and writing it back should
be
trivial.

If you formatted a worksheet for this purpose, again, adding code for
the
additional functionality should be very easy.

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
Hello,
I have an application that I wrote in excel. It has 80 fields that I
wrote a front end just to put data into the excel spread sheet. Now,
the customer would like to view and change records thru the front end.
I am not sure to go about this using excel. But I believe that using a
db tool like MSaccess would allow the functionality that the customer
requires. But the customer is unwilling to invest in the project -
there in lies the rub.

Is there a tool out there that is freeware that will allow me to
import
what I have built (GUI front and/or data from the excel sheet.) But
will allow for the reports (like access) based on the tables?

Or is there a way to write the change and review functionality in
excel?



Any advice would be appreciated.







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
Excel development tools? Neil Jones Excel Discussion (Misc queries) 1 April 22nd 10 09:24 PM
Tools | References - information about references L Mehl Excel Programming 6 July 4th 04 06:28 PM
Excel-Tools Sandeep Madduri Excel Programming 0 January 23rd 04 09:43 PM
Shareware Edwin's Power Tools decompiled and became Excel PowerPlus Tools Edwin Tam (MS MVP) Excel Programming 28 November 17th 03 05:43 AM
Development Tools Available for Excel Charles R. Hoffman Excel Programming 0 October 17th 03 05:28 PM


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