May 04 2023 02:12 PM
Thanks to the wisdom of @mathetes I have almost got my puzzle solved.
I now seek the number of 'Tickets' issued for each hour of the day represented in Column C. I currently have a formula that has a static date matching 'Selected Date' giving me the total 'Tickets' for the entire day. I need Column D to show how many for each hour.
Column C formula - =SORT(UNIQUE(FILTER(HOUR(DailyTransactionSht!D2:D782330),DailyTransactionSht!A2:A782330=HourlyAverageSht!C3)))
Column E formula -
=IFERROR(AVERAGE(FILTER(DailyTransactionSht!$H$2:$H$782330,HOUR(DailyTransactionSht!$D$2:$D$782330)=HourlyAverageSht!C6)),"")
Column D formula -
=COUNTIF(DailyTransactionSht!A2:A782330,"6/3/2019")
May 04 2023 02:31 PM - edited May 04 2023 02:33 PM
Solution@Phishdawg I think it will be:
=ROWS(FILTER(A2:A782330,
(HOUR(DailyTransactionSht!D2:D782330)=C4)*
(DailyTransactionSht!A2:A782330=$C$1)))
where I assume C1 is the location of that date and C4 is the location of the hour
May 04 2023 02:48 PM - edited May 04 2023 02:54 PM
May 04 2023 04:37 PM
May 04 2023 02:31 PM - edited May 04 2023 02:33 PM
Solution@Phishdawg I think it will be:
=ROWS(FILTER(A2:A782330,
(HOUR(DailyTransactionSht!D2:D782330)=C4)*
(DailyTransactionSht!A2:A782330=$C$1)))
where I assume C1 is the location of that date and C4 is the location of the hour