Hi @Nicholas Marchese, it sounds like you want to check if the values in your "PPM Sponsoring Division" column exist in a reference table/list - moving from a formula with hard-coded values (i.e. IN ("Hospital 1", "Hospital 2", "Hospital 3") ) to a more dynamic one that checks another table.
If so, then you can go with either what Gordana (Lookup) or Angela (Tablematch) is recommending.
The Lookup approach might be the simpler solution because it is possible to return the Matching Column itself.
For example, if you have a table that contains a list of "PPM Sponsoring Division" w/o any return values in mind, then you can use a combination of the "If" and "Lookup" formulas like the example below:
Example:
=If(Lookup(PPM Sponsoring Division, [PPM Sponsoring Division Table Name], [PPM Sponsoring Division Column Name], [PPM Sponsoring Division Column Name])!="","Y","N")
The logical test here (!="") checks if the lookup formula is returning a non-null/not blank value.
Since Lookups can return the Matching Column itself, wherever there's a match it would evaluate as not blank and return "Y"; otherwise, it would return "N".