Hi Wayne!
The following (corrected) versions seems to work OK but it might not
be what you want
=IF(C17="I",IF(D17="F",G13),IF(C17="T",IF(D17="F",G14),IF(C17="C",IF(D
17="F",G15))))
Here's what you had so you can spot the differences:
=IF(C17="I",IF(D17="F",G13)(C17="T",IF(D17="F",G14)(C17="C",IF(D17=F,G
15))))
A couple of commas, insertion of two IFs and making sure F was "F"
C17 can be I, T, or C.
If C17 is none of those, you'll get FALSE
It C17 is I then if D17 is F you get G13 but if D17 is not F you get
FALSE
If C17 is T then if D17 is F you get G14 but if D17 is not F you get
FALSE
If C17 is C then if D17 is F you get G15 but if D17 is not F you get
FALSE
I find that decision trees are quite useful for sorting these IF
functions out but it is a matter of taste and some regard it as a
brute force approach.
An MVP? Here's the official blurb from Microsoft:
http://mvp.support.microsoft.com/default.aspx?scid=fh;EN-US;mvpfaqs
Extract starts >>
Here are some frequently asked questions and answers. Feel free to
contact the Microsoft MVP Program for any questions, comments, or
suggestions about the MVP Program.
What is the Microsoft MVP award?
The Microsoft Most Valuable Professional (MVP) Award is an annual
award that is given to outstanding members of Microsoft's peer-to-peer
communities.
Why does the award exist?
Microsoft believes that a robust, interactive user community is key to
helping customers maximize the solutions and benefits from their
software investments. The MVP Award is the way Microsoft recognizes
those participants who have made a highly positive impact in the
technical and product communities they participate in. Microsoft wants
community participants and leaders to know that their contributions
are greatly appreciated. The MVP Award exists as a way to reach out to
and thank outstanding members for their past participation and
willingness to help others in these communities.
How does Microsoft award the MVPs?
An internal committee of professionals from various groups at
Microsoft selects the annual MVP Award winner from a group of
nominees.
Are Microsoft MVPs experts in all Microsoft technologies and products?
No. Although many MVPs have in-depth knowledge of more than one
product or technology, none of them are experts in all Microsoft
technologies or products.
Do Microsoft MVPs receive any payment from Microsoft?
No. Microsoft does provide a small award of software, but MVPs do not
receive any monetary payment from the Microsoft MVP Program.
How long does the Microsoft MVP Award last?
The MVP Award is given each year for an individual past participation
in a Microsoft technical community. The period between awards is
considered an award year during which award recipients are free to
refer to themselves as a Microsoft MVP and enjoy all other privileges
included with the award.
What does Microsoft expect of its MVPs?
Because the MVP Award is an award-based program whose criteria are
based on past contributions, Microsoft has no expectations of MVPs
beyond the expectations of courtesy, professionalism, and adherence to
the community rules that we ask of all Microsoft community members.
How can I become a Microsoft MVP?
There is no set formula, script, or plan you can follow that will
guarantee that you will receive an award. If you have recently begun
participating in a Microsoft peer-based community, do not expect to
move into a leadership role overnight. Earning the respect of your
peers and earning recognition from Microsoft takes time. If you have
been participating for a while, you may already be on your way to
achieving MVP status.
<< Extract Ends
--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
Wayne Cameron said:
I'm not too smart this time Norm. I have put the formula in as
follows:
=IF(C17="I",IF(D17="F",G13)(C17="T",IF(D17="F",G14)(C17="C",IF(D17=F,G
15)))) and I,m getting "false". I should get the result equal to the
value that is in "G15" since I have a "C"in "C17" and an"F" in "D17".
Does this make my problem clearer? Have I completely misunderstood
you?