Forum Discussion
Kenneth Ulrich
Sep 19, 2018Copper Contributor
Excel Formula misreading Input [SOLVED]
Hi All, I am using the following formula to keep track of how many tickets I work a day. The issue is that, I have multiple tables on the same spreadsheet, and it is counting the "Columns",...
- Sep 20, 2018
google the function COUNTIFS - maybe this can help...
Lorenzo Kim
Sep 20, 2018Bronze Contributor
="Count of Oldest Tickets Below:"&COUNTIF(C6:C304, "<>")
in the above formula - what is it not equal to?
maybe..
="Count of Oldest Tickets Below:"&COUNTIF(C6:C304, "<>0") ?
countif is looking at range C6 to C304 and searching what is "not equal to zero"
HTH
in the above formula - what is it not equal to?
maybe..
="Count of Oldest Tickets Below:"&COUNTIF(C6:C304, "<>0") ?
countif is looking at range C6 to C304 and searching what is "not equal to zero"
HTH
- Kenneth UlrichSep 20, 2018Copper Contributor
Hi Lorenzo,
I tried that.
="Count of Oldest Tickets Below:"&COUNTIF(C6:C296, "<>Account")
And the ticket count came to 291, I mainly just need C5, C34, C43 exempted from the formula. Maybe I could try to exclude those cells in the formula?
- Lorenzo KimSep 20, 2018Bronze Contributor
google the function COUNTIFS - maybe this can help...
- Kenneth UlrichSep 24, 2018Copper ContributorThank you.
I actually just did ="Count of Oldest Tickets Below:"&COUNTIF(C6:C297, "<>")-2 and it's giving the proper readout now.