R
rileym
I have two columns, Date and Location. In location, there are
different possibilities, lets say Alpha, Bravo, Charlie, Delta. Here i
a small example of my data.
_Date--------------Location_
1/2/06------------Alpha
2/2/06------------Bravo
2/4/06------------Charlie
In reality, I have numerous dates with these four locations. I a
trying to track the total number of times a particular location is use
in a month.
I.E. In March of 2006, Location Charlie occurred 9 times.
I have figured out how to get total times Charlie was used w/
=COUNTIF(location, "Charlie")
and how many locations were used for a month w/
=COUNTIF(date,">"&B10)-COUNTIF(date,">"&B11)
I just don't know how to join these two together to get Locatio
Charlie for March 06. Would I use COUNT with AND?
Thanks in Advanc
different possibilities, lets say Alpha, Bravo, Charlie, Delta. Here i
a small example of my data.
_Date--------------Location_
1/2/06------------Alpha
2/2/06------------Bravo
2/4/06------------Charlie
In reality, I have numerous dates with these four locations. I a
trying to track the total number of times a particular location is use
in a month.
I.E. In March of 2006, Location Charlie occurred 9 times.
I have figured out how to get total times Charlie was used w/
=COUNTIF(location, "Charlie")
and how many locations were used for a month w/
=COUNTIF(date,">"&B10)-COUNTIF(date,">"&B11)
I just don't know how to join these two together to get Locatio
Charlie for March 06. Would I use COUNT with AND?
Thanks in Advanc