Is there a way in data matrix to do a formula to count the the number of lines with a due date today to 30 days out? I am trying to see item that will hit in the future.
Can you share a screenshot so we can see what you are referring to?
You can do a Countif of row that are greater than today().
=Countifs([Date Row Title]:[Date Row Title], >Today())
If you need a cross sheet reference you can do that too. After entering =Countifs( click on the little link that reference data from another sheet in the help box that appears..
I cant seem to have that work how i want. but here is screen shot
it still doesnt pull anything with that formula.
It actually looks like you're trying to sum data there. That is different than count...
Here is the sumifs formula... If you're using cross-sheet references you will need to reference one column at a time. You'll have to create each cross sheet column individually.
=Sumifs({Value column to sum from Cross Sheet}, {Date Column from Cross Sheet Reference}, >Today(30))
https://help.smartsheet.com/function/sumifs
And as I read your comments, I think I might have that formula a little bit off.
=Sumifs({Value column to sum from Cross Sheet}, {Date Column from Cross Sheet Reference}, <Today(30), {Add a new refrence to the Date column}, >Today())
That will sum every row that has a due date that is less than 30days from today, and is greater than today. Essentially the next 30 days.
I'm wondering if anyone has worked out a dynamic formula to return the date of the 'next' Thursday of the month. I have a worksheet where I need to send out a reminder to a contacts in a contact column in the worksheet each Thursday of the current month if a criteria has not been met. When criteria has been met, then…
Hello, I have the formula to check a box for line items with the current month. =IF(AND(YEAR(Date@row ) = YEAR(TODAY()), MONTH(Date@row ) = MONTH(TODAY())), 1, 0) Trying to set up a report for all items with the previous month (i.e. 1 month prior to current). How can I modify to check the box?
Please help, I have a few of these to do. I have a nested IF formula. The first part is an INDEX/MATCH and works as a standalone. The next few are INDEX/COLLECT. These are not working as standalone or in the nested version (Unparsable Error). Any ideas? =IF(CONTAINS(“A/V”, [Vendor Type]@row ), INDEX(COLLECT({Date Secured…