Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 76
Default Multiple critera

Hi, I need help with a formula for the following:

If Column E =7 and Column F = 7 and column G = F it can return a value of
True if not False

Thanks Donna
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Multiple critera

hi
try this....
=IF(AND(E2=7,F2=7,G2="F"),TRUE,FALSE)


Regards
FSt1

"Donna" wrote:

Hi, I need help with a formula for the following:

If Column E =7 and Column F = 7 and column G = F it can return a value of
True if not False

Thanks Donna

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 915
Default Multiple critera

Donna wrote:
Hi, I need help with a formula for the following:

If Column E =7 and Column F = 7 and column G = F it can return a value of
True if not False

Thanks Donna


Here are a few options that demonstrate different ways to check multiple
conditions...

Straightforward, with clear intentions:
=IF(AND(E2=7,F2=7,G2="F"),TRUE)

Slightly more sophisticated, uses fewer functions:
=IF((E2=7)*(F2=7)*(G2="F"),TRUE)

Bending toward the absurd for this example:
=SUMPRODUCT((E2=7)*(F2=7)*(G2="F"))=--TRUE
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 76
Default Multiple critera


Thank you very much
Donna
"FSt1" wrote:

hi
try this....
=IF(AND(E2=7,F2=7,G2="F"),TRUE,FALSE)


Regards
FSt1

"Donna" wrote:

Hi, I need help with a formula for the following:

If Column E =7 and Column F = 7 and column G = F it can return a value of
True if not False

Thanks Donna

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
Formula with multiple critera jjohnsonofduluthMN Excel Discussion (Misc queries) 3 April 3rd 09 04:28 PM
Sumproduct Lookup with multiple critera? RayportingMonkey Excel Worksheet Functions 4 February 5th 09 01:27 AM
Multiple critera with in a sumif statement Mark Allen Excel Discussion (Misc queries) 5 October 30th 08 07:09 PM
help with sumif formula with multiple critera Matt Excel Worksheet Functions 4 October 13th 07 06:56 PM
SUMPRODUCT multiple critera from different worksheets nx3 Excel Worksheet Functions 2 November 21st 06 02:47 PM


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