What about a search for AB in addition to a count of the letters? (so it would need to have AB and be equal to 2 characters?
What about a search for AB in addition to a count of the letters? (so it would need to have AB and be equal to 2 characters?
That wouldn’t work as, if it was AB C, it would check it’s length as two. There are so many possible test cases, over which FIND and SEARCH fail. I could go ahead and create a function for this on javascript(Node.js), but I hoped such a function, would be present here. There isn’t.
That wouldn’t work as, if it was AB C, it would check it’s length as two. There are so many possible test cases, over which FIND and SEARCH fail. I could go ahead and create a function for this on javascript(Node.js), but I hoped such a function, would be present here. There isn’t.
Hmm, can you show me what the data looks like? It is hard to understand the limitations/needs without seeing it.
Hmm, can you show me what the data looks like? It is hard to understand the limitations/needs without seeing it.
This is not dependent on my current dataset, I have been running through different test cases, which would cause issues in the future. This is one I couldn’t handle using AirTable functions.
This is not dependent on my current dataset, I have been running through different test cases, which would cause issues in the future. This is one I couldn’t handle using AirTable functions.
My question was mainly to determine what your linked records actually are. I assumed based on your first message the record names were “ABC”, “CDE”, etc. But it sounds like they are actually “A”, “B”, “C”, etc. This would change the way of approaching the issue - however it would likely take some more complex IF formulas.
My question was mainly to determine what your linked records actually are. I assumed based on your first message the record names were “ABC”, “CDE”, etc. But it sounds like they are actually “A”, “B”, “C”, etc. This would change the way of approaching the issue - however it would likely take some more complex IF formulas.
I supposed there could’ve been a way to check for a string-match to the option, which is a really basic function required for matching a linked field to a specified string, but sadly there is not, instead I have to use hacks which could disrupt the program when I use an array of test cases. It’s just a basic array search, which Airtable complicates.