Hello,
I have a formula I am using on one sheet. The sheet is named "Mark" since he is the Point Person.
=COUNTIFS([First Contact Year]:[First Contact Year], "2020", [First Contact Month]:[First Contact Month], "Jan", [Point Person]:[Point Person], "Mark")
I have another sheet named "Summary - 2020". I want this exact formula to populate a box on this Summary - 2020 sheet. When I make the formula on the Summary - 2020 sheet, I have to use the "reference another sheet" link and it pretty much creates the formula for me (which is the same as above) but it looks like this:
=COUNTIFS({Mark Range 5}, "2020", {Mark Range 3}, "Jan", {Mark Range 4}, "Mark")
I have 10 other people I am doing this for and I need to manually create these "Mark Range 5" but I would rather just use the above formula and change the name Mark to Adam, Tracy, etc. depending on the sheet name. I would think it would look something like this but it doesn't work:
=COUNTIFS({Mark [First Contact Year]:[First Contact Year]}, "2020", {Mark [First Contact Month]:[First Contact Month]}, "Jan", {Mark [Point Person]:[Point Person]}, "Mark")
I want to see that I am referencing First Contact Year column rather than Mark Range 5 within the formula. Please help!