You are looking at CTRL-1, correct?
Choose, number, no decimals.
Yes, CTRL-1; however, selecting no decimals rounds the number up if the decimal is .5 or greater. It also doesn't ignore the first two digits of the number, which I also require.
I've been unsuccessful with any of the formats in the CTRL-1 menu.
I am trying to convert stock market data from a online site into a two digit format as described in my posting.
Why is that required?
Maybe you can use a formula to convert those entries like the one below?
=MID(A1,SEARCH(".",A1)-2,2)+0
Aladin
Example:
Cell A1 contains 34.5436
Cell B2 formula: =int(a1)
Thanks, Kevin and Aladin...
Both formulas help. Aladin's is great until there's a decimal followed by a zero. Kevin's keeps the higher decimal from rounding up. Perhaps if I tinker with both I'll come up with something that works across the board.
Thanks again,
jonathan