Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default creating a calculator

Excel 2003
I have two lists of parts, each with a different price. I want to be able to
enter a part number add it to another part number and get the total cost. It
needs to be brief and not overly complex and invlove filtering etc. The guys
in the workshop want to just type in the two part numbers and have the final
cost invloved diplayed. It sounds easy but I'm no expert using excel so all
help would be appreciated
Thanks


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default creating a calculator

Let's say you have a table in A:B, with column A listing all your part
numbers and column B listing prices.

If C2 is your first p/n, and C3 is your second p/n, the total is:
=IF(ISBLANK(C2),0,VLOOKUP(C2,A:B,2,FALSE))+IF(ISBL ANK(C3),0,VLOOKUP(C3,A:B,2,FALSE))

If you want to get a little fancy and have quantity called out in D2 and D3,
your total cost would be:
=D2*IF(ISBLANK(C2),0,VLOOKUP(C2,A:B,2,FALSE))+D3*I F(ISBLANK(C3),0,VLOOKUP(C3,A:B,2,FALSE))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"bearing man" wrote:

Excel 2003
I have two lists of parts, each with a different price. I want to be able to
enter a part number add it to another part number and get the total cost. It
needs to be brief and not overly complex and invlove filtering etc. The guys
in the workshop want to just type in the two part numbers and have the final
cost invloved diplayed. It sounds easy but I'm no expert using excel so all
help would be appreciated
Thanks


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pop up calculator possible ? ORLANDO VAZQUEZ[_2_] Excel Discussion (Misc queries) 2 March 24th 09 08:31 PM
PMT calculator carrie08 Excel Discussion (Misc queries) 8 September 26th 08 07:16 PM
creating a calculator mmacnz Excel Discussion (Misc queries) 1 October 23rd 07 04:07 PM
Creating a Utility Cost calculator Eric Excel Discussion (Misc queries) 1 September 9th 06 05:11 AM
Calculator Terry Excel Discussion (Misc queries) 12 October 7th 05 10:54 AM


All times are GMT +1. The time now is 12:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"