I need a formula to return just the first 3 numbers from a cell that may contain 9 or more numbers.
How do I trim off all the extra numbers?
Thanks,
Rita Hill
Try
=LEFT(A1,3)+0
It coerces the result into a number. Without it the LEFT function returns text.