multiple input questions

  • Thread starter Thread starter jpoltor
  • Start date Start date
J

jpoltor

ok so here is the question

Im not sure if excel can do this but just learning daily Im not sur
what it can not do.

I have a checking account worksheet and everytime I input in one of th
cells I would like it to ask me what type of expense was it referral
rental property or commission

Then I would like it to send that expense to another worksheet tha
tracks each individual category

Thanks
J
 
If you only have three accounts, then here is an easy way to do it,
select the cell you want the account to show up and then goto
Data,Validation,List and type in the three accounts like this
for this example use A1

referral, rental property,commission

then you have a dropdown menu in that cell

then in the three columns that you are keeping track of these accoun
type in this formula

We'll use A1 as the account name
B1 as the amount
A2 =If(A1="Referral",B1,0)
B2 =if(A1="Rental Property",B1,0)
C2 =if(A1="Commision",B1,0)


Check out data validation at, for more information

http://www.contextures.com/xlDataVal01.htm
 

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