•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Windows Software section within the Tech Talk category of DaniWeb, a massive community of 428,634 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,010 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Windows Software advertiser: Programming Forums
Views: 1353 | Replies: 8
![]() |
•
•
Join Date: Feb 2008
Location: Kingston, Jamaica
Posts: 87
Reputation:
Rep Power: 1
Solved Threads: 1
I'm not sure where this should go but here goes:
A student of my mom asked me to workup something for her to store informations and do calculations.
Basically she described an events planner where she'll enter a date, name of event, the cost, and the payment to be received. Money owed, totals for the month and for a particular category will be calculated. She should be able to enter US, POUND, and a few other currencies of her choice and see in conversion in the amount owed/paid columns.
I used an Excel spreadsheet to do the job, most of her requirements anyway.
. I detected a few minor kinks in certain formulas only after she paid for it but these kinks doesn't stop her from doing her main tasks anyway and I'll fix them the next time she comes by.
Now she's asking me to change a few things (which translates to additional complicated formulas on my part).
Should I continue working with the spreadsheet or would an Access Database file work better in this situation? When is a database the better choice vs a spreadsheet and vice versa for a small to medium number of records.
A student of my mom asked me to workup something for her to store informations and do calculations.
Basically she described an events planner where she'll enter a date, name of event, the cost, and the payment to be received. Money owed, totals for the month and for a particular category will be calculated. She should be able to enter US, POUND, and a few other currencies of her choice and see in conversion in the amount owed/paid columns.
I used an Excel spreadsheet to do the job, most of her requirements anyway.
. I detected a few minor kinks in certain formulas only after she paid for it but these kinks doesn't stop her from doing her main tasks anyway and I'll fix them the next time she comes by. Now she's asking me to change a few things (which translates to additional complicated formulas on my part).
Should I continue working with the spreadsheet or would an Access Database file work better in this situation? When is a database the better choice vs a spreadsheet and vice versa for a small to medium number of records.
•
•
Join Date: Jan 2008
Location: Bangalore, India
Posts: 336
Reputation:
Rep Power: 0
Solved Threads: 32
nice.......
see if u have to impress some one and if u r good in some programming language use data base and make one application using language. this will give u extendability and with each new requirement u will be able to move forward.
so if u dont know any lang learn some uptill then use spreadsheet.
see if u have to impress some one and if u r good in some programming language use data base and make one application using language. this will give u extendability and with each new requirement u will be able to move forward.
so if u dont know any lang learn some uptill then use spreadsheet.
A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila.
~Mitch Ratcliffe
~Mitch Ratcliffe
•
•
Join Date: Aug 2005
Location: near St Louis, Missouri, USA
Posts: 11,233
Reputation:
Rep Power: 38
Solved Threads: 937
If you use Access (or any other database) you will have to lean SQL query language and one of the many programming languages that can access the database, such as VB, C#, C and C++. Using Excell you don't have to know anything about any of that. So your choice will depend on how well you know Excell and database languages.
Word of warning: If you elect the database route and write computer programs for it then you should add copyright notices at the top of every source code file. Its important that you retain the copyright of everything you write even if someone pays you to write it.
Word of warning: If you elect the database route and write computer programs for it then you should add copyright notices at the top of every source code file. Its important that you retain the copyright of everything you write even if someone pays you to write it.
•
•
Join Date: Feb 2008
Posts: 22
Reputation:
Rep Power: 1
Solved Threads: 2
I think the job is easily done in Excel. And provides the analytic possibilities and is even more simple than say an average database like access. Although you may find that periodically using access to export data from Excel to a database would provide you with a basic data warehouse of some sort. This may be of interest from an historic data point of view. Obviously Excel 2003 has 65,536 row capability access has about 2GB which is far more. Maybe stick with Excel, and learn Access then miagrate/interlinct the two programs at a later data, with data imports bi-directionally between the two programs. use the microsoft office online tutorials they are very good and easy to follow. Good luck and happy reading.
•
•
Join Date: Feb 2008
Location: Kingston, Jamaica
Posts: 87
Reputation:
Rep Power: 1
Solved Threads: 1
Thanks for clearing that up. I'll remember that when I start writing software commercially. I know enough SQL to do basic tasks but is C++ applicable to MS Access?
C++ is something I've just started learning so writing a complete solution with database interaction is far beyond me at this point but a skill I'm interested in acquiring.
C++ is something I've just started learning so writing a complete solution with database interaction is far beyond me at this point but a skill I'm interested in acquiring.
•
•
•
•
If you use Access (or any other database) you will have to lean SQL query language and one of the many programming languages that can access the database, such as VB, C#, C and C++. Using Excell you don't have to know anything about any of that. So your choice will depend on how well you know Excell and database languages.
Word of warning: If you elect the database route and write computer programs for it then you should add copyright notices at the top of every source code file. Its important that you retain the copyright of everything you write even if someone pays you to write it.
•
•
Join Date: Feb 2008
Posts: 22
Reputation:
Rep Power: 1
Solved Threads: 2
To be honest with you, I would start looking at 3things. 1=MS Access "gets lots of stick but great to learn database concepts as its visual" 2=SQL server 2005 express edition and related tutorials.3="Visual basic 2005 express edition or 2008" by far the easiest language to learn, its visual again! You would easily learn to export data from excel to access then upsize that database to sql server 2005 using the upsize wizard in access,then design a simple form with data grid in visual basic 2005/2008 express "freeware" and query the database from your application. I bet within a couple of days of really looking at this you would be able todo it. Or you could just simply link the Visual basic application to the MS access database. There are loads of tutorials about.
•
•
Join Date: Feb 2008
Location: Kingston, Jamaica
Posts: 87
Reputation:
Rep Power: 1
Solved Threads: 1
My primary reason for considering Access is not it's data warehousing capabilities but the restrictions its interface offers vs Excel. In Excel, my client can alter the formulas and manipulate the spreadsheet in ways that interfere with it's functionality (unintentionally). Trying to implement the protect sheet option in Excel restricts the capabilities even after tweaking. In Access, he/she is limited to forms and reports I create.
Hmmm, a very interesting suggestion indeed. That's definitely something worth looking into during the summer when I have more time. In your first suggestion, is that a standalone application of would I need sql server 2005 along with other software to run it? Remember that I'd be selling my product to clients and they will not have all these software packages installed.
•
•
•
•
I think the job is easily done in Excel. And provides the analytic possibilities and is even more simple than say an average database like access. Although you may find that periodically using access to export data from Excel to a database would provide you with a basic data warehouse of some sort. This may be of interest from an historic data point of view. Obviously Excel 2003 has 65,536 row capability access has about 2GB which is far more. Maybe stick with Excel, and learn Access then miagrate/interlinct the two programs at a later data, with data imports bi-directionally between the two programs. use the microsoft office online tutorials they are very good and easy to follow. Good luck and happy reading.
Hmmm, a very interesting suggestion indeed. That's definitely something worth looking into during the summer when I have more time. In your first suggestion, is that a standalone application of would I need sql server 2005 along with other software to run it? Remember that I'd be selling my product to clients and they will not have all these software packages installed.•
•
•
•
To be honest with you, I would start looking at 3things. 1=MS Access "gets lots of stick but great to learn database concepts as its visual" 2=SQL server 2005 express edition and related tutorials.3="Visual basic 2005 express edition or 2008" by far the easiest language to learn, its visual again! You would easily learn to export data from excel to access then upsize that database to sql server 2005 using the upsize wizard in access,then design a simple form with data grid in visual basic 2005/2008 express "freeware" and query the database from your application. I bet within a couple of days of really looking at this you would be able todo it. Or you could just simply link the Visual basic application to the MS access database. There are loads of tutorials about.
•
•
Join Date: Feb 2008
Posts: 22
Reputation:
Rep Power: 1
Solved Threads: 2
Hi,
Its easy to create "Read only" excel work books/sheets, hide all worksheets that aren't needed for the user, i.e. where some of the math/manipulation is occurring "the underlying logic/data component of the workbook., have a standard sheet which the user always has to go to on opening "macro based" at workbook launch. From there I would put some buttons in which would enable the user to navigate to specific worksheets/areas of interest or graphs or such. I tend to use the "autoshapes" like the cube or something and simply "assign a macro" to it, this way you get a good looking button with "fill effects" if you like, which creates a nice looking interface. I would hide the "gridlines" and "freeze panes" to allow a certain area to be viewable. This you could call the "start up screen". You can basically do anything and everything with excel.
As far as your self built application and linking/querying to a database goes, maybe a good starting point would be Microsoft Access "not promoting it" but certainly the easiest to use. Create an application using for instance "Visual Basic 2005/2008 express edition" "check legalities as far as selling your products are concerned" and you could lend bind a data grid in VB 2005/2008 to a table or such like in an access database on the same pc or over a network.
You could allow for read/write so that a user can add data and even remove rows etc.
This although isn’t that complex, will take some reading and learning of new packages and of course VB programming, although it can be done, I would suggest that if you are serious about developing databases and associated applications, to start the long a hard road of learning about "SQL server 2005 express, Visual Basic 2005 express, Visual web design 2005 express, Access 2003>, Oracle 10g Xe, ADO+ADO.NET, the ".NET frameworks" etc. Of course you could create easier databases using Access, with simple forms etc and by hiding the database window, would stop the customer from altering the database/tables themselves, look into Access database security. Most of all keep learning.
"All of the packages I mention above are not endorsed by me, in any way shape or form, I just happen to know a fraction about them, hence I use them to reference. There are far more people on here and on other places who will know lots more about these and other very capable packages from differing software vendors".
Best Wishes
Leo
Its easy to create "Read only" excel work books/sheets, hide all worksheets that aren't needed for the user, i.e. where some of the math/manipulation is occurring "the underlying logic/data component of the workbook., have a standard sheet which the user always has to go to on opening "macro based" at workbook launch. From there I would put some buttons in which would enable the user to navigate to specific worksheets/areas of interest or graphs or such. I tend to use the "autoshapes" like the cube or something and simply "assign a macro" to it, this way you get a good looking button with "fill effects" if you like, which creates a nice looking interface. I would hide the "gridlines" and "freeze panes" to allow a certain area to be viewable. This you could call the "start up screen". You can basically do anything and everything with excel.
As far as your self built application and linking/querying to a database goes, maybe a good starting point would be Microsoft Access "not promoting it" but certainly the easiest to use. Create an application using for instance "Visual Basic 2005/2008 express edition" "check legalities as far as selling your products are concerned" and you could lend bind a data grid in VB 2005/2008 to a table or such like in an access database on the same pc or over a network.
You could allow for read/write so that a user can add data and even remove rows etc.
This although isn’t that complex, will take some reading and learning of new packages and of course VB programming, although it can be done, I would suggest that if you are serious about developing databases and associated applications, to start the long a hard road of learning about "SQL server 2005 express, Visual Basic 2005 express, Visual web design 2005 express, Access 2003>, Oracle 10g Xe, ADO+ADO.NET, the ".NET frameworks" etc. Of course you could create easier databases using Access, with simple forms etc and by hiding the database window, would stop the customer from altering the database/tables themselves, look into Access database security. Most of all keep learning.
"All of the packages I mention above are not endorsed by me, in any way shape or form, I just happen to know a fraction about them, hence I use them to reference. There are far more people on here and on other places who will know lots more about these and other very capable packages from differing software vendors".
Best Wishes
Leo
![]() |
•
•
•
•
•
•
•
•
DaniWeb Windows Software Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
apple blog browser business business software computer crack daniweb database dell development erp systems india install internet leopard linux media microsoft mmorpg mobile network news office open operating os photo pirate project management security server software software selection source spyware sql survey system technology evaluation ubuntu unix upgrade vista web windows windows update windows vista xp
- Writing to an Access Database (Visual Basic 4 / 5 / 6)
- Import excel records into ASP database (ASP)
- change data from ms works db into spreadsheet (Windows Software)
- C# .Net 2005 - Question about .Row.Add(new object[]{...,...}) Please help! (C#)
- exporting Excel tables into PostgreSQL database (Python)
- dynamic content from database, How? (Database Design)
Other Threads in the Windows Software Forum
- Previous Thread: Infopath
- Next Thread: cannot use shared printer after installing offfice 2007 for home and student



Linear Mode