Trying to capture past dates and future dates
So, I have a column where I can predicted dates (to pay an invoice). Some of these values are past the predicted date of payment. Therefore, I want to make a formula that will capture all those whose date is in the past and those invoices whose predicted pay day is in the next 30 days. So far,
I am only able to do :
=SUMIFS({UDA}, {UDM}, $[30 Day]$1, {UID}, $ID@row, {UTY}, $[REPORT 1 - Invoices by Category (next 30 days)]@row)
Which only adds the invoices that fall on the 30 days for the future.
Any help :D
Answers
-
You can use PredictedPayDate or UDM@row <= TODAY(30) .
=SUMIFS(UDA:UDA, UDM:UDM, <=TODAY(30), UTY:UTY, UTY#)
Assumption
- UDA: column holding data values related to the amount of each invoice.
- UDM: column containing the due dates or payment dates of the invoices.
- UID: the unique identifier for each invoice, such as an invoice number.
- UTY: type of invoice, possibly indicating different types of transactions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!