Hello!
I'm using the "Jira Cloud for Sheets" extension and running a macro that calls the "JIRA" function from a cell. The function looks like this:
'=JIRA("(project = FP AND issuetype in (Story, Task, Bug) AND resolutiondate >= 2024-10-28)", "key,summary,issue type,status,Created,resolutiondate")
My question is: how can I provide the resolutiondate as a parameter instead of hard-coded?
Did you try experimenting with sheets today function?
https://support.google.com/docs/answer/3092984?sjid=9854440490088339623-EU
Somehow I was thinking that you want to pass date from sheets ;)
for JQL function check: https://support.atlassian.com/jira-software-cloud/docs/jql-functions/#startOfDay--
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was looking for something like this:
But I don't know how to do this :'(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can be done, but not directly, you need to change your parametr to text before you send it to Jira (and make sure it matches Jira date format)
here is some basic example with formulas used:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Lucas Modzelewski _Lumo_!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.