Dialog Boxess possible

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

We are trying to work out a profit/loss type of thing with excel and want to
make it easier. Is it possible to have a dialog box open up with various
lines to put information in and then this can go into specific sheets and or
tabs to be able to recalculate totals, rather then having to enter it in each
different sheet/tab?
 
You could build a userform:
http://www.microsoft.com/ExcelDev/Articles/sxs11pt1.htm

Or maybe a simple version...

Create an "input" worksheet.

Put a nice description in column A and allow the user to enter values in column
B. (You could have warning messages in column C).

Then use a formula in those other sheets to get the data.

if you needed a value from B97 in one of your other worksheets:

=Input!b97

or

=if(input!b97="","",input!b97)

===
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top