M
manovi
Pls tell me how to change 23.40 in to 23400 in excel ?
manovi said:Pls tell me how to change 23.40 in to 23400 in excel ?
RyanR said:I think you're trying to turn water into wine....
I see three options:
1. The quickest would be to simply increase the decimal placement, but
that'll leave the decimal point (which you can't remove) and deal with it.
2. An extra column as per method previously posted
3. Write a macro to perform the operation for you ie.
the basic format would be (sorry haven't written vb for a while, but you'll
get the idea)
var k
while not lastrow{
k = currentrow.cellvalue * 1000
currentrow.cellvalue = k
}
Such that the macro, loops through every cell, grabs the value, multiplies
by 1000 and replaces the cell value.
Just depends how often you need to do this operation, if it was going to be
regular, then i'd be thinking about writing the macro to do it.
--
Cheers,
RyanR
--- pls click yes if I''ve helped you ---