I'm unable to convert this to column formula (probably due to the reference to my 'blank' column… However, this formula doesn't work,
=IF(LEN([Source Admission ID]) >= 21, "Source Admission ID Limited to 20 VARCHAR", "")
So, I changed it to this, which works…
=IF(LEN([Source Admission ID]) >= 21, "Source Admission ID Limited to 20 VARCHAR", Blank5).
The reason that the below formula doesn't work is that I have a condition set to check that field and if it's 'empty' to highlite it… "" actuall fills the field so it's not 'empty'. :( Hence, why I created a "blank" column to reference to…
=IF(LEN([Source Admission ID]) >= 21, "Source Admission ID Limited to 20 VARCHAR", "")