• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

excel question

zoukou55

New Member
I have 6 items in my drop list and with their own budget

When I chose an item, it is possible that his budget appears in the appropriate cell

for example, when I chose "vehicle maitenance", I want to see automatically his budget, his cost centre, and total cost


thanks
 
Hi zoukou55,


Welcome to the Chandoo's forums!!


You can do that with either vlookup() or index() & Match(). Depdnding on how data is present these will work:


Code:
=vlookup("Vehicale Maintenance,YourTable, ColumnUWantToLookInto)


OR


=Index(ColumnUWantToLookInt,Match("Vehicale Maintenance",HeaderRow,0),0)


...It would be help full if you upload a sample file in case this doesn't work.


Regards,

Faseeh
 
Back
Top