954,092 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

turning excel spreadsheet into a software application

Hi all,

Now I have no programing experience, I know very little about this, so please bear in mind.

I am trying to turn a particular excel spreadsheet I have made (the user inputs information and it creates a final answer(result)) and I want to be able to turn this simply into an application. So it is a seperate peice of software to excel.

Can anyone suggest how I can do this?

Thanks

webinvest
Newbie Poster
9 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

Considering you have no programming expericence, any advice we give you would go for waste as you would have having no clue as to how to realize the idea. Learn a programming language of your choice. Maybe then you would be in a position to actually achieve something.

~s.o.s~
Failure as a human
Administrator
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 733
 

what the hekk is wrong with u, another grumpybastardon the forums. Well maybe someone could point me in the direction of a simple program i could do it with, or a simple autorun type program.

Geez get a life

webinvest
Newbie Poster
9 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

..and another l33t hax0r kid who thinks he can rule the world. Enjoy your ignorance. Oh and btw, avoid using explicit contents in your post, you might just get banned.

~s.o.s~
Failure as a human
Administrator
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 733
 

Yes, please try to keep it clean. Bad news, but for your information, its not possible. You could write a program to automate excel, or use VBA to write a GUI for it, but the person running it would require excel on theier pc.

jbennet
Moderator
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,820
Solved Threads: 600
 

Ok. Anyone know a simple program that can make a simple bit of software where the user inputs various things and it comes out with a final outcoe based on these variables?

webinvest
Newbie Poster
9 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

Visual Basic?

you could do something like (for example to work out a simple bill)

Dim HoursWorked as Integer
Dim PayPerHour as Integer
Dim CalloutFee as Integer
Dim Total as Integer
 
CalloutFee = InputBox("What was the callout fee")
 
PayPerHour  = InputBox("Enter Pay Per Hour")
 
HoursWorked = InputBox("Enter Hours Worked")
 
Total = (PayPerHour * HoursWorked) + CalloutFee
 
Msgbox("Total cost is: $ " & Total & " for the work")
jbennet
Moderator
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,820
Solved Threads: 600
 

Believe it or not, Visual Basic has a learning curve. And it's made all the more evident when the programmer is impatient or gets angry at people who try to help him/her.

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 

know any good way of writing this into a simple form for a website, so it operates like an xcel formula. some sort of form generator?

webinvest
Newbie Poster
9 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

For a website?

You could use visual web developer and ASP.NET ?

jbennet
Moderator
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,820
Solved Threads: 600
 
know any good way of writing this into a simple form for a website, so it operates like an xcel formula. some sort of form generator?


You can always use HTML to create forms and Javascript for programming your logic. Its a matter of 100 lines of code (HTML + Script) depending on the complexity of the formula.

~s.o.s~
Failure as a human
Administrator
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 733
 
Hi all, Now I have no programing experience, I know very little about this, so please bear in mind. I am trying to turn a particular excel spreadsheet I have made (the user inputs information and it creates a final answer(result)) and I want to be able to turn this simply into an application. So it is a seperate peice of software to excel. Can anyone suggest how I can do this? Thanks

The easiest way is to lock the cells with a password that you don't want the user to access, then they can enter data into the dataentry cells, but not change your code.

You can cover the hidden cells with colour, put instructions over etc.

Hope this helps

Denis

DenisOxon
Posting Whiz
355 posts since Jan 2007
Reputation Points: 22
Solved Threads: 19
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: