Returning a Date Value from Another Sheet if Certain Criterias are Met
I have been working on the formula to return a date value from another worksheet if certain criterias are met.
Here is the formula i input but with a formula error of #UNPARSEABLE
=INDEX(COLLECT({Send Out Date}, {Range}, =CONTAINS("Bank Confirmation", {Range}), {Client ID1}, =CONTAINS([Client ID]@row, {Client ID1}))),1)
Any help is so appreciated !
Answers
-
It looks like you have a couple of syntax issues. You need to remove the = before each of the CONTAINS functions and the {Range} in each of those functions should be @cell.
=INDEX(COLLECT({Send Out Date}, {Range}, CONTAINS("Bank Confirmation", @cell), {Client ID1}, CONTAINS([Client ID]@row, @cell))),1)
-
Hi @Paul Newcome,
Thank you for your clarification, i have tried using the same formulas you provided but it came out to be #UNPARSEABLE.
-
My apologies. I threw in an extra closing parenthesis. Try this:
=INDEX(COLLECT({Send Out Date}, {Range}, CONTAINS("Bank Confirmation", @cell), {Client ID1}, CONTAINS([Client ID]@row, @cell)),1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!