Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default calculator creation, find missing value

I would like to build a calculator using Excel but am unsure of some of the
formulations.

I would like to create a calculator that will return any missing fourth
value when three values are given.

The formula is similar to y = a * b* c

Depending on the real world circumstances, any of three values are present
but the fourth is missing. Is there a formula, expression, function, or
series of if statements that will do this?

Is there a way for the user to type in the values but not destroy the
underlying formulas/functions keeping the caculator working? This might be a
good opportunity for me to learn VBA if this is required. Suggestions would
be helpful.

Thank you,
philr
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default calculator creation, find missing value

Put labels in column A, and use column B for entry - let's say B2:B5 with y in B2, etc.

Then in C2 to C5, use the formulas

=IF(B2<"",B2,IF(COUNTA($B$2:$B$5)=3,B3*B4*B5,"Ent ries not valid"))
=IF(B3<"",B3,IF(COUNTA($B$2:$B$5)=3,B2/B5/B6,"Entries not valid"))
=IF(B4<"",B4,IF(COUNTA($B$2:$B$5)=3,B2/B3/B5,"Entries not valid"))
=IF(B5<"",B5,IF(COUNTA($B$2:$B$5)=3,B2/B3/B4,"Entries not valid"))

HTH,
Bernie
MS Excel MVP


"philr" wrote in message
...
I would like to build a calculator using Excel but am unsure of some of the
formulations.

I would like to create a calculator that will return any missing fourth
value when three values are given.

The formula is similar to y = a * b* c

Depending on the real world circumstances, any of three values are present
but the fourth is missing. Is there a formula, expression, function, or
series of if statements that will do this?

Is there a way for the user to type in the values but not destroy the
underlying formulas/functions keeping the caculator working? This might be a
good opportunity for me to learn VBA if this is required. Suggestions would
be helpful.

Thank you,
philr



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
Find missing numbers Vic Excel Discussion (Misc queries) 4 November 4th 09 12:32 AM
help find missing paranthesis ---- please jenn Excel Worksheet Functions 3 March 1st 07 02:25 AM
Find missing data DEE Excel Worksheet Functions 0 November 28th 06 07:16 PM
Find the missing number? Djanvk Excel Discussion (Misc queries) 3 April 26th 06 08:12 PM
where can i find a merchant calculator? Bob Excel Discussion (Misc queries) 1 May 14th 05 11:38 AM


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

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

About Us

"It's about Microsoft Excel"