Hello. I have setup a JIRA extract to provide raw data on which to develop an operational dashboard. I need to be able to count 'closed this month' on the dashboard. I am getting a closed date for each row from JIRA and, since this is an automated extract feeding a live dashboard, creating another column to extract the month from the date field for each row is not an option as it would require constant updating based on the growth of rows in the spreadsheet that will naturally occur as operational requests are pulled from JIRA through the connector.
I have tried to embed a formula to extract the Month value from the date field into the Countif formula, but am getting an #Unparseable error
=countif((month([Resolution Date]20),[Issue Type]3)
the value in the [Issue Type]3 field is a calculated variable that correctly resolves to current month. =MONTH([Resolution Date]3)
the value in [Resolution Date]3 is a calculated variable that correctly resolves to Monday's date for the current week. =TODAY() + 1 - WEEKDAY(TODAY() - 1).
I also use [Resolution Date]3 to count 'closed this week' and that formula is working correctly =COUNTIFS([Resolution Date]:[Resolution Date], >[Resolution Date]3)
These calculations are all in a 'header' area (as well as a number of other variable counts) so that these calculations will always be updated as the JIRA data gets updated automatically via the connector.
Can anyone help me with the correct formula to obtain a count of closed this month using a full date that resides in date field? format is mm/dd/yy
Thank you so much!