I am currently in the process of creating a dashboard. I was originally planning to use cellular formulas to pull this data. The original formula I was using is:
=COUNTIFS({JBO Type}, "Overhead", {Date}, IFERROR(MONTH(@cell), "") = 11)
However, this formula is returning an improper total, it reads "24" when it should be "42." I know this because I double/triple check my numbers before pushing them out to management.
I was able to get the data I need using a sheet summary with the formula:
=COUNTIFS([JBO Type]:[JBO Type], "Overhead", Date:Date, AND(@cell >= DATE(2021, 11, 1), @cell <= DATE(2021, 11, 31)))
This is great, however it extremely limits the way I can display the data in a dashboard due to it being in a sheet summary.
How can I write this so I can embed it within a sheet and not limit my displays on a dashboard?
Thanks in advance,
Kyle