Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have 4 values - Rate, Index, Margin & Teaser. If I have 3 of the four I can
solve for any of them when they are missing. How do I create this to allow input of values to solve for the missing value regardless of which one is missing? 'Teaser= (Index + Margin)-rate', Index=(rate + Teaser) - Margin, and Margin= (Rate + Teaser) - Index' |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if you are just wanting a formula, then used a nested if:
=If(A1="",(B1+ C1) - D1,If(B1="",(D1 + A1) - C1,.... Does that help? Charles edwinvon wrote: I have 4 values - Rate, Index, Margin & Teaser. If I have 3 of the four I can solve for any of them when they are missing. How do I create this to allow input of values to solve for the missing value regardless of which one is missing? 'Teaser= (Index + Margin)-rate', Index=(rate + Teaser) - Margin, and Margin= (Rate + Teaser) - Index' |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use the Worksheet_change event
http://www.cpearson.com/excel/events.htm for an overview of events. -- Regards, Tom Ogilvy "edwinvon" wrote: I have 4 values - Rate, Index, Margin & Teaser. If I have 3 of the four I can solve for any of them when they are missing. How do I create this to allow input of values to solve for the missing value regardless of which one is missing? 'Teaser= (Index + Margin)-rate', Index=(rate + Teaser) - Margin, and Margin= (Rate + Teaser) - Index' |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I appreciate the help. I can use the nested formula but I was trying to
create a functional Worksheet for my team to use to plug in their value and receive the missing value. Thank you "edwinvon" wrote: I have 4 values - Rate, Index, Margin & Teaser. If I have 3 of the four I can solve for any of them when they are missing. How do I create this to allow input of values to solve for the missing value regardless of which one is missing? 'Teaser= (Index + Margin)-rate', Index=(rate + Teaser) - Margin, and Margin= (Rate + Teaser) - Index' |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Missing text in cells | Excel Discussion (Misc queries) | |||
Pie Charting with Missing and Changing Data | Charts and Charting in Excel | |||
Missing Cells | Excel Discussion (Misc queries) | |||
assigning "missing value" to cells | Excel Discussion (Misc queries) | |||
Missing cells | Excel Programming |