INVALID DATA TYPE AFTER CONVERTING TO A STRING
I am trying to create a column formula to check if a value exists in another sheet. The value in both sheets consist of numbers and letters, so I assumed I need to convert both columns to a string. Even after referencing the new helper string columns, I am still getting an invalid value. Anyone know how to resolve this? @Paul Newcome - you've been my hero before, you wizard. Any advice?
Answers
-
Are you able to provide some screenshots for context?
-
I'm not sure what exactly I am looking at in your screenshots. Are you able to describe each one? How many different sheets are there?
One thing I do notice is your use of the MATCH function. The MATCH function outputs a number. So if the string you are searching for is in the 15th cell within the range you are searching in, your formula becomes
=IF(15, false, true)
What exactly are you wanting to accomplish?
-
I am trying to return a true if the value is present in another sheet
-
In that case, I would use an IF/COUNTIFS.
=IF(COUNTIFS({Other Sheet String Column}, @cell = [String Column]@row)> 0, 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!