Formula Help Needed - Return "50" if date is within a range AND another field is not blank
Hello!
I've been working on this formula for hours now and could use some help. I have a column called "Program Date" and a column called "TR". If Program Date is between 12/1/24 and 4/30/25 AND TR is not blank - then I need it to return the value "50" in my "Cost" column.
This is where I am at so far:
=IF(AND([Program Date]@row >= DATE(2024, 12, 1), [Program Date]@row < DATE(2025, 5, 1), IF(NOT(ISBLANK([TR]@row)))), "50", "")
Any help would be amazing!
Tags:
Best Answer
-
Lets include your TR inside the AND statement.
=IF( AND( [Program Date]@row >= DATE(2024, 12, 1), [Program Date]@row < DATE(2025, 5, 1), NOT(ISBLANK(TR@row)) ), "50", "")
...
Answers
-
Lets include your TR inside the AND statement.
=IF( AND( [Program Date]@row >= DATE(2024, 12, 1), [Program Date]@row < DATE(2025, 5, 1), NOT(ISBLANK(TR@row)) ), "50", "")
...
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 460 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!