Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub Number2Text()
'this will change NUMBERS to TEXT in any column range contiguous with the active cell
dim r as range
for each r in range(activecell.end(xlup), activecell.end(xldown))
with r
if isnumeric(.value) then .formula = "'" & .formula
end with
next
end sub