Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello...
Could someone please tell me the easiest way to basically do the following? "If Cell A1 and Cell B1 both contain something, then count... If both, or one of the Cells is blank, then ignore." So basically... A1 B1 x x x x ------------ I would like my formula cell to return a value of 1... Thanks for any help!!!! Stacy |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=SUMPRODUCT(--(A1:A10<""),--(B1:B10<""))
-- Regards, Tom Ogilvy "stacy" wrote in message oups.com... Hello... Could someone please tell me the easiest way to basically do the following? "If Cell A1 and Cell B1 both contain something, then count... If both, or one of the Cells is blank, then ignore." So basically... A1 B1 x x x x ------------ I would like my formula cell to return a value of 1... Thanks for any help!!!! Stacy |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=if(counta(a1:b1)=2,"both","not both")
or =if(counta(a1:b1)=2,1,0) stacy wrote: Hello... Could someone please tell me the easiest way to basically do the following? "If Cell A1 and Cell B1 both contain something, then count... If both, or one of the Cells is blank, then ignore." So basically... A1 B1 x x x x ------------ I would like my formula cell to return a value of 1... Thanks for any help!!!! Stacy -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Okay, that works perfectly... Now what if I have a range to look at?
Like A1:A500, and B1:B500? In Cell C1 I would like one value, telling me how many total rows, from 1 to 500, have something in both the A and B columns? Is this possible or would I have to replicate the numeric value, like in your formula, and then go back and "count" all the 1's for my total? A1 B1 C1 x x 3 x x x x x x x C1=3 being the number of "true" rows that have data in both columns... Thanks again for any clarification... I appreciate it!! |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Stacy,
Tom already gave you that: =SUMPRODUCT(--(A1:A500<""),--(B1:B500<"")) -- steveB Remove "AYN" from email to respond "stacy" wrote in message oups.com... Okay, that works perfectly... Now what if I have a range to look at? Like A1:A500, and B1:B500? In Cell C1 I would like one value, telling me how many total rows, from 1 to 500, have something in both the A and B columns? Is this possible or would I have to replicate the numeric value, like in your formula, and then go back and "count" all the 1's for my total? A1 B1 C1 x x 3 x x x x x x x C1=3 being the number of "true" rows that have data in both columns... Thanks again for any clarification... I appreciate it!! |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just as previously stated:
=SUMPRODUCT(--(A1:A500<""),--(B1:B500<"")) -- Regards, Tom Ogilvy "stacy" wrote in message oups.com... Okay, that works perfectly... Now what if I have a range to look at? Like A1:A500, and B1:B500? In Cell C1 I would like one value, telling me how many total rows, from 1 to 500, have something in both the A and B columns? Is this possible or would I have to replicate the numeric value, like in your formula, and then go back and "count" all the 1's for my total? A1 B1 C1 x x 3 x x x x x x x C1=3 being the number of "true" rows that have data in both columns... Thanks again for any clarification... I appreciate it!! |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Lady, you must be psychic.
Moe. Tom Ogilvy wrote: Just as previously stated: =SUMPRODUCT(--(A1:A500<""),--(B1:B500<"")) -- Regards, Tom Ogilvy "stacy" wrote in message oups.com... Okay, that works perfectly... Now what if I have a range to look at? Like A1:A500, and B1:B500? In Cell C1 I would like one value, telling me how many total rows, from 1 to 500, have something in both the A and B columns? Is this possible or would I have to replicate the numeric value, like in your formula, and then go back and "count" all the 1's for my total? A1 B1 C1 x x 3 x x x x x x x C1=3 being the number of "true" rows that have data in both columns... Thanks again for any clarification... I appreciate it!! -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Naw, I thought the original question was always for a multiple row range.
So if I were Moe and you were Larry or Curly, some pain would be called for at this point <g -- Regards, Tom Ogilvy "Dave Peterson" wrote in message ... Lady, you must be psychic. Moe. Tom Ogilvy wrote: Just as previously stated: =SUMPRODUCT(--(A1:A500<""),--(B1:B500<"")) -- Regards, Tom Ogilvy "stacy" wrote in message oups.com... Okay, that works perfectly... Now what if I have a range to look at? Like A1:A500, and B1:B500? In Cell C1 I would like one value, telling me how many total rows, from 1 to 500, have something in both the A and B columns? Is this possible or would I have to replicate the numeric value, like in your formula, and then go back and "count" all the 1's for my total? A1 B1 C1 x x 3 x x x x x x x C1=3 being the number of "true" rows that have data in both columns... Thanks again for any clarification... I appreciate it!! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count with multiple criteria in multiple cells | Excel Worksheet Functions | |||
Filter Multiple Columns on Multiple Criteria and count the last co | Excel Worksheet Functions | |||
To count the data using multiple criteria in multiple columns | New Users to Excel | |||
Count multiple cells against multiple criteria in an Excel spreads | Excel Worksheet Functions | |||
Multiple Criteria, Count If, Sum Product to get count across range | Excel Worksheet Functions |