Forum Discussion
ChrisC365
Feb 04, 2020Brass Contributor
How to identify letter combinations in a cell value
Hi Needing some help with identifying what type of grant I have on worksheet using a formula. Each grant has its own project code, the format or letters dictate what category of award it its. For...
PeterBartholomew1
Aug 13, 2020Silver Contributor
While I think of it ...
It is possible to search for slightly more complex substrings using COUNTIFS and wild card searches
= IFS(
COUNTIFS([@Code],"RS*"),"INTERNAL GRANT",
COUNTIFS([@Code],"D*"),"GEN GRANT",
TRUE, "KEY GRANT" )
Since the formula searches only a single cell, the count will be 0 or 1.
An advantage of the table is that the formula range extends as data is appended to the table.
One less manual operation is one less opportunity for error.