I have two colums of data, a time is say A1 and a unit name in A2, 150 or so rows of this.
Currently I'm doing a count if statement on the time portion.
This gives me the count for that time period, I have one for the 24 hours in a day, works great.
I need to make a count if statement to include the parameters of the time and the unit.
The output I'm looking for is GSU had 12 events during the 5pm time frame.
Thanks,
D
Currently I'm doing a count if statement on the time portion.
Code:
=COUNTIFS(B250:B417,">=17:00",B250:B417,"<=17:59")
This gives me the count for that time period, I have one for the 24 hours in a day, works great.
I need to make a count if statement to include the parameters of the time and the unit.
The output I'm looking for is GSU had 12 events during the 5pm time frame.
Code:
=COUNTIFS(B250:B417,">=17:00",B250:B417,"<=17:59") AND ("GSU")(
Thanks,
D