FogBugz - Filter List by date range using BETWEEN - fogbugz

Is there a way in FogBugz to filter a list of cases which have been opened/resolved/closed between a given date range?
Thanks in advance!

Try searching for (in your FogBugz):
Opened:"September/1/2009..today"
See Searching in FogBugz for more.

Related

Trying to get this spreadsheet to highlight cells based on todays date

So, I'm looking for a way to make the cell(s) highlight themselves based on todays date, nothing too fancy just so it's simpler to see the day. Pictured below is the graph I currently have.
What I've got
I know it'd be easier for the formula if I were to just format the date as mm/dd/yy or some form of that, but it works better visually for the purpose of the form if it is done this way. So is there a way I could make it work how it is now? If not then what would be best with the formatting done in a mm/dd/yy format? Thank you in advance :)
Use this custom CF formula rule-
=AND(A1=DAY(TODAY()),A$2=TEXT(TODAY(),"MMMM"))
try on range A2:Z:
=A$2&A3=TEXT(TODAY(); "mmmmd")

Google Sheets: How to Find the Least Popular/Common Value

I'm looking for help finding a function/formula to find the least common value in a col on Google Sheets.
In a couple of words, the opposite of the Mode function.
Any help would be hugely appreciated.
Thanks,
Tom.
Assuming the range you want to count is A2:A40, try:
=unique(filter(A2:A40,countif(A2:A40, A2:A40)=MIN(countif(A2:A40,A2:A40))))

Ad-words Average order value and Max CPC [API]

I am pulling data from Adwords report API. I can get everything that I need clicks, impressions, position for my keyword. But there are two things what I can't find in those:
Average order value.
Max CPC (hourly)
Could you please recommend me where I can get this date I need.
Thanks for any suggestions!
The query item MaxCpc was changed within the last year or so. It was replaced with the query item CpcBid. I'm not sure what to do about order value, but the documentation containing all of the query items for the different report types can be found at:
https://developers.google.com/adwords/api/docs/appendix/reports
Hope this helps!

Jira JQL equivalent to Group By

I'm trying to pull a report, (a pie chart or just a list) on amount of assigned issues in the last month by assignee.
Also is there any way to do an average age report, but per user as well?
The Group By part comes from using the Issue Statistics gadget to summarize a report by a particular field such as Assignee. Most but not all fields appear in the list of fields to summarize by.
~Matt
Not sure if this is what your looking for:
Go in to Issue and query for createdDate >= -30d, this will give all issues created in past 30 days.
next go to views>pie chart>Save to dashboard add filter name
Then you can edit the statistic type to display by assignee.
In addition to Matt's answer, you can also use a 2 dimensional filter statistics, which is more detailed.

Calculating days to next birthday in Google Spreadsheet

I have the date of birth of a person and want to calculate the days until his/her next birthday. How to do this in a way to deal with leapyears and other "odd" things?
Using google spreadsheet internal functions:
=IF(DATE(YEAR(TODAY()),MONTH(A2),DAY(A2))>TODAY(),
DATE(YEAR(TODAY()),MONTH(A2),DAY(A2)),
DATE(YEAR(TODAY())+1,MONTH(A2),DAY(A2)))
-TODAY()
where A2 is the cell with the birthday of the person.
The IF at the beginning is for testing if the next birthday is this year or next year.
A slightly shorter neater version using pure sheets functions is:
=DATE(YEAR(A2)+DATEDIF(A2,TODAY(),"y")+1,MONTH(A2),DAY(A2))-TODAY()
This simpler, and uses the DATEDIF(...,"y") to get complete years that have passed and adds one, rather than needing an If around the entire calculation.
Having figured this out working on the problem myself, I then came across the same solution on this site, which includes some more explanation.
following the nice and short version that Jon Egerton posted, here is a small change that returns 0 when the birthday is on the current day (instead of returning 365), and also handles future dates
=DATE(YEAR(A2)+IF(A2<TODAY(),DATEDIF(A2+1,TODAY(),"y")+1,-DATEDIF(TODAY(),A2,"y")),MONTH(A2),DAY(A2))-TODAY()
I found that using WolframAlpha for calculating the days is the most "simple" way to do it. Use the following code:
REGEXEXTRACT(JOIN("";ImportXML(JOIN("";"http://www.wolframalpha.com/input/?i=birthday+";YEAR(A2);"-";MONTH(A2);"-";DAY(A2);"&asynchronous=false&equal=Submit"); "//script")); "(\d+) days until next")
Where A2 is the cell with the birthday of the person.

Resources