I'm trying to identify if the last word in a string contains SCANNER. I have tried different code and posted a failed attempt below. Can anyone help fix this code?

=IF(RIGHT(SEARCH("SCANNER",A1)),"TRUE","FALSE"))
SERVICE CHARGES
SCAN HV MAINT
LOW VOLUME SCANNER MAINT
MED LOW VOLUME SCANNER

If I have the above items, I only want to see TRUE for the MED LOW VOLUME SCANNER items, since SCANNER is the last word in the string. This will always be the case with my data. No other item ends with SCANNER and so I wan't to know when that string combination is true.

Thanks in advance!