I have a range of numbers in cells that have General formatting. When a number in a cell is less than 43560, for example 40000, then I want to add the words "square feet", so it displays as "40000 square feet".
I accomplish this with the following:
If Val(ActiveCell) < 43560 Then ActiveCell =...