Getting different results from filter using VBA

Alex Galvan June 30, 2017

Hey guys, 

I have created a filter in Jira that will bring me all the issues that were created on an specific week. Something like this....

project = TEST AND issuetype = Bug AND created >= startOfWeek(-12) AND created <= endOfWeek(-12) 

What i'm doing is that I'm building a report in Excel using VBA to call the REST services to run that filter, with its ID, and get the count of issues from that specific filter and add those into a cell. 

The problem is that I'm getting different results from the filter. If I use it in Jira, I'm getting "n" issues, and when using the REST services in VBA, I'm getting something different than "n". 

I realized that it has something to do with the functions of "startOfWeek" and "endOfWeek". Jira is interpreting the end of week as Saturday (which is what I want) but Excel/VBA is interpreting the end of week as Sunday. So, that's why I'm getting a misscount, any ideas on how to fix this in VBA? 

 

Thanks!

1 answer

0 votes
Brandt Miller June 30, 2017

Hey Alejandro,

In VBA you're able to set the start of the week using the weekday() function. I think this link here does a good job of explaining it.

https://www.techonthenet.com/excel/formulas/weekday.php

Alex Galvan June 30, 2017

Hey Brandt!

Thanks for the response, but the problem is that I'm not using Excel to calculate the week, I'm just running the filter that does that.

.Open "GET", "https://TEST.atlassian.net/rest/api/2/search?jql=filter=12345", False
.SetRequestHeader "Content-Type", "application/json"
.SetRequestHeader "Accept", "application/json"
.Send

And then, from the response, I just take the "total" node. 

If I make the call through Postman or cURL or whatever ... I'm getting the actual result I want. But when calling it from VBA with the above code, I'm getting this missmatch. 

Suggest an answer

Log in or Sign up to answer