> can't do "level three" tasks like "You want to know what percentage of the emails sent by John Smith last month were about sustainability"
10 years of professional programming and I'd have no idea how to do that off the top of my head, I'm guessing the answer would depend more on the email program you're using to see if it's even possible.
1. Search "from:John Smith newer_than:30d", note the number of emails as x
2. Search "from:John Smith newer_than:30d sustainability", note the number of emails as y
3. pctg = (y / x) * 100
3 comments
[ 1.5 ms ] story [ 29.1 ms ] thread10 years of professional programming and I'd have no idea how to do that off the top of my head, I'm guessing the answer would depend more on the email program you're using to see if it's even possible.
Guess my career as a product manager is secure.