Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Multi-Condition Formula

Im using this formula;
=IF(OR(Source Sheet!C10={,C, B}),Source Sheet!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, C or B are present and then nothing is entered
into the destination sheet. This only leaves two conditions that would allow
data entered into the source sheet to appear in the destination sheet. These
conditions are S and D. If S I would like to have any number entered in
the source sheet to appear in the destination sheet, but if the D condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too much,
my question is; is it possible to keep the initial two false conditions; C
and B in the formula and add the two true conditions S and D. I hope
that my explanation is not too confusing. I dont have a good record of being
either clear or concise.
Thank you,
Malcolm

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default Multi-Condition Formula

Do you mean

=IF(OR('Source Sheet'!C10={"","C","B"}),'Source Sheet'!B10,IF(OR('Source
Sheet'!C10={"","D","S"}),2,""))

--

HTH

Bob

"Malcolm" wrote in message
...
I'm using this formula;
=IF(OR('Source Sheet'!C10={"","C", "B"}),'Source Sheet'!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, "C" or "B" are present and then nothing is
entered
into the destination sheet. This only leaves two conditions that would
allow
data entered into the source sheet to appear in the destination sheet.
These
conditions are "S" and "D". If "S" I would like to have any number entered
in
the source sheet to appear in the destination sheet, but if the "D"
condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too
much,
my question is; is it possible to keep the initial two false conditions;
"C"
and "B" in the formula and add the two true conditions "S" and "D". I hope
that my explanation is not too confusing. I don't have a good record of
being
either clear or concise.
Thank you,
Malcolm



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Multi-Condition Formula

Try

=IF(OR(C10={"","C","B"}),B10,IF(ISNUMBER(B10),IF(C 10="S",B10,
IF(AND(C10="D",B10=2),2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Im using this formula;
=IF(OR(Source Sheet!C10={,C, B}),Source Sheet!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, C or B are present and then nothing is entered
into the destination sheet. This only leaves two conditions that would allow
data entered into the source sheet to appear in the destination sheet. These
conditions are S and D. If S I would like to have any number entered in
the source sheet to appear in the destination sheet, but if the D condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too much,
my question is; is it possible to keep the initial two false conditions; C
and B in the formula and add the two true conditions S and D. I hope
that my explanation is not too confusing. I dont have a good record of being
either clear or concise.
Thank you,
Malcolm

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Multi-Condition Formula

Jacob, Hi,
I entered your formula and it worked except for the last condition D. I
was not clear, but if the source sheet (End Bal) in cell C10 is D there is
no number in the source sheet (End Bal )C10. That is why I wanted to add the
2 to the destination sheet B10. So, does the 'End Bal'!B10=2) refer to the
source sheet? If so, there is no number there. If I am unclear please let me
know.

=IF(OR('End Bal'!C10={"","C","B"}),'End Bal'!B10,IF(ISNUMBER('End
Bal'!B10),IF('End Bal'!C10="S",'End Bal'!B10,IF(AND('End Bal'!C10="D",'End
Bal'!B10=2),2,"")),""))

Regards,
Malcolm


"Jacob Skaria" wrote:

Try

=IF(OR(C10={"","C","B"}),B10,IF(ISNUMBER(B10),IF(C 10="S",B10,
IF(AND(C10="D",B10=2),2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Im using this formula;
=IF(OR(Source Sheet!C10={,C, B}),Source Sheet!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, C or B are present and then nothing is entered
into the destination sheet. This only leaves two conditions that would allow
data entered into the source sheet to appear in the destination sheet. These
conditions are S and D. If S I would like to have any number entered in
the source sheet to appear in the destination sheet, but if the D condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too much,
my question is; is it possible to keep the initial two false conditions; C
and B in the formula and add the two true conditions S and D. I hope
that my explanation is not too confusing. I dont have a good record of being
either clear or concise.
Thank you,
Malcolm

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Multi-Condition Formula

Hi Malcolm

From your statement "I would like the number 2 and only 2 to be entered in
the destination sheet." I thought the source sheet will have the value; but
you need that to be returned only if the value is 2...

If that is not the case; then try the below version

=IF(OR('End Bal'!C10={"","C","B"}),'End Bal'!B10,
IF(ISNUMBER('End Bal'!B10),IF('End Bal'!C10="S",'End al'!B10,
IF('End Bal'!C10="D",2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Jacob, Hi,
I entered your formula and it worked except for the last condition D. I
was not clear, but if the source sheet (End Bal) in cell C10 is D there is
no number in the source sheet (End Bal )C10. That is why I wanted to add the
2 to the destination sheet B10. So, does the 'End Bal'!B10=2) refer to the
source sheet? If so, there is no number there. If I am unclear please let me
know.

=IF(OR('End Bal'!C10={"","C","B"}),'End Bal'!B10,IF(ISNUMBER('End
Bal'!B10),IF('End Bal'!C10="S",'End Bal'!B10,IF(AND('End Bal'!C10="D",'End
Bal'!B10=2),2,"")),""))

Regards,
Malcolm


"Jacob Skaria" wrote:

Try

=IF(OR(C10={"","C","B"}),B10,IF(ISNUMBER(B10),IF(C 10="S",B10,
IF(AND(C10="D",B10=2),2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Im using this formula;
=IF(OR(Source Sheet!C10={,C, B}),Source Sheet!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, C or B are present and then nothing is entered
into the destination sheet. This only leaves two conditions that would allow
data entered into the source sheet to appear in the destination sheet. These
conditions are S and D. If S I would like to have any number entered in
the source sheet to appear in the destination sheet, but if the D condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too much,
my question is; is it possible to keep the initial two false conditions; C
and B in the formula and add the two true conditions S and D. I hope
that my explanation is not too confusing. I dont have a good record of being
either clear or concise.
Thank you,
Malcolm



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Multi-Condition Formula

Jacob, Hi,
My bad again. 'End Bal!'C10="D", 'End Bal'!B10 is an empty cell on the
source sheet. I want 'Close Bal'!C10="D" and 'Close Bal'B10=2 on the
destination sheet. Again my screwup led to to a formula based on my bad
information, my apologies.

Best Regards,
Malcolm

"Jacob Skaria" wrote:

Hi Malcolm

From your statement "I would like the number 2 and only 2 to be entered in
the destination sheet." I thought the source sheet will have the value; but
you need that to be returned only if the value is 2...

If that is not the case; then try the below version

=IF(OR('End Bal'!C10={"","C","B"}),'End Bal'!B10,
IF(ISNUMBER('End Bal'!B10),IF('End Bal'!C10="S",'End al'!B10,
IF('End Bal'!C10="D",2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Jacob, Hi,
I entered your formula and it worked except for the last condition D. I
was not clear, but if the source sheet (End Bal) in cell C10 is D there is
no number in the source sheet (End Bal )C10. That is why I wanted to add the
2 to the destination sheet B10. So, does the 'End Bal'!B10=2) refer to the
source sheet? If so, there is no number there. If I am unclear please let me
know.

=IF(OR('End Bal'!C10={"","C","B"}),'End Bal'!B10,IF(ISNUMBER('End
Bal'!B10),IF('End Bal'!C10="S",'End Bal'!B10,IF(AND('End Bal'!C10="D",'End
Bal'!B10=2),2,"")),""))

Regards,
Malcolm


"Jacob Skaria" wrote:

Try

=IF(OR(C10={"","C","B"}),B10,IF(ISNUMBER(B10),IF(C 10="S",B10,
IF(AND(C10="D",B10=2),2,"")),""))

--
Jacob (MVP - Excel)


"Malcolm" wrote:

Im using this formula;
=IF(OR(Source Sheet!C10={,C, B}),Source Sheet!B10).
This allows what I enter into the source sheet to also enter into the
destination sheet unless, C or B are present and then nothing is entered
into the destination sheet. This only leaves two conditions that would allow
data entered into the source sheet to appear in the destination sheet. These
conditions are S and D. If S I would like to have any number entered in
the source sheet to appear in the destination sheet, but if the D condition
is entered in the source sheet, I would like the number 2 and only 2 to be
entered in the destination sheet. So, if I have not confused this too much,
my question is; is it possible to keep the initial two false conditions; C
and B in the formula and add the two true conditions S and D. I hope
that my explanation is not too confusing. I dont have a good record of being
either clear or concise.
Thank you,
Malcolm

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
Multi-condition SUMIF Manuel Excel Worksheet Functions 4 December 10th 09 01:49 PM
Complex Multi-condition, multi-workbook count Heliocracy Excel Discussion (Misc queries) 0 October 4th 07 08:18 PM
Rank by Multi Condition Ananth Excel Discussion (Misc queries) 4 June 26th 07 06:01 AM
Fine-Tune Multi-Condition Formula VB Excel Worksheet Functions 2 March 1st 07 06:55 PM
Help with Multi-Condition Formula VB Excel Worksheet Functions 2 February 28th 07 08:58 PM


All times are GMT +1. The time now is 09:11 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"