A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
For a displayed value, try this...
ActiveSheet.Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Select
On the other hand, if you have formulas and some of those formulas are displaying the empty string and you want to go to the last cell with a formula even if that formula is displaying the empty string, then try this instead...
ActiveSheet.Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlFormulas).Select
Your description makes it sound like you want the first code line.