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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!