Within a text field there may be nulls, or text that contains the letters "LFU." I want a formula that searches for "LFU" in the string and then returns 6 characters starting in position 2 to the right of "LFU." If "LFU" cannot be found in the string I want to return "None."
Everything I try either errors or doesn't give me the desired result. This was my best shot (excluding the "None" part) and it errors:
Test: Right([Text],InStr([Text],"LFU")6)