Best Of
Re: Report showing activity per month grouped by resource
I think I actually just figured it out, at least for us. I set up a filter to show rows that match all conditions, then set the Start Date to "is less than or equal to" the last date of the month I want and set the End Date to "is greater than or equal to" the first date of the month I want. For example, if I want all rows with activity in May, my filter is set with Start Date is less than or equal to 5/31/25 and End Date is greater than or equal to 5/1/25. It gave me all the rows with activity in May. I tested it a few times for a few different months and it appears to work. Hope it works for you, too.
Re: Automation triggered when rows are changed is happening on initial input
@anil ayhan thanks for confirming. I will open a support ticket and let you know if it is resolved.
Re: SUM from another sheet based on the week
I created data to try and help you dial in your formula. I called one sheet "Source Data" and a second set Summary Sheet. The formula lives on the summary sheet in the # of findings column.
You will note that I have a "Week Ending" column. This was used while constructing the formula to make sure I was capturing the right data in testing. It is not used in the final formula.
Something like this:
=SUMIFS({Source Data | Findings}, {Source Data | Date}, {Source Data | Date} >= [Week Start]@row, {Source Data | Date}, {Source Data | Date} <= ([Week Start]@row + 6))
Best,
Hudson
Re: Webhook delay with attachments (1-2hours!)
Hey @Craig Watkinson
No problem! I would send them the following:
- URL of an example sheet you've seen this happen on
- If it happens on multiple sheets, identify this
- If it happens on a copy of the same sheet, identify this
- Timestamp of when the attachment was added
- How the attachment was added (e.g. Form, Update Request, Manual, API)
- Screen capture of the Activity Log with the attachment added shown
- Timestamp of when the Webhook notification received for that attachment
- Screen captures if possible
This should help point them in the right direction! They may ask for more information but it's a good start.
Cheers,
Genevieve
Genevieve P.
Re: Link % completion and Status fields
I made mine work with this statement
=IF(AND([% Complete]1 > 0, [% Complete]1 < 1), "In Progress", IF([% Complete]1 = 1, "Complete", "Not Started"))
Re: Activacion de TRIAL Resource Mangement
Gracias por responder mi consulta.
Entonces comprare una licencia temporal por un mes, hasta que mi gerencia me apruebe presupuesto.
Saludos, nuevamente muchas gracias.
Re: COUNTIF Formula for Checkbox Column Not Working in Sheet Summary
Try this instead:
=COUNTIFS([Pending]:[Pending], @cell = 1) + "/" + COUNTIFS([Pending]:[Pending], OR(@cell = 1, @cell <> 1))
Paul Newcome
Re: Getting Invalid Operation using Countifs with two fields
UPDATE: I figured it out. I am embarrassed to say it did not occur to me initially to change the 100 to a 1 instead (because without the percentage, that is the full value). Thanks for the help!
I have been trying to manipulate the formula based on your info above but am still having issues. Here is where I left it - it does give me a number (rather than an error) but I have two test rows set up to meet this criteria, yet the formula returns zero as the count
=COUNTIFS(Status:Status, "Tech Assist", [Overall Percent Complete]:[Overall Percent Complete], 100)
It is definitely the overall percent complete part that is tripping it up - if I do just the first part with a COUNTIF it works just fine - I have tried with an equals instead of a comma, with and without a percentage sign, and with and without quotes, all throwing some kind of error. Any other thoughts?
Re: Help with a checkbox triggering a formula
Hey man,
Try this formula:
=IF([ITEM 1]@row = 1, IF(NOT(ISBLANK([ITEM 1 QTY]@row)), [ITEM 1 QTY]@row * 10.4))
This will work only if the check box is checked and there is a quantity in the "Item 1 Qty" cell.
Let me know if it works!
Thanks,
JRR

