A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi - I am trying to translate an Access Expression with .... LIKE " *" .... into Excel. For example.
=iif(RIGHT([FULLNM],2) LIKE " *","TRUE","FALSE"). in english it is if Right 2 chars of fullnm contains a blank and any letter then write true esle write false.
Can this be done in Excel function with islike or something ?? please help?
Try this formula:
=IF(LEFT(RIGHT(A1,2))=" ","TRUE","FALSE")
Hope this helps / Lars-Åke