Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default HOW TO CHANGE DECIMAL IN EXCEL

Pls tell me how to change 23.40 in to 23400 in excel ?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default HOW TO CHANGE DECIMAL IN EXCEL



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?


In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's the
project?
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default HOW TO CHANGE DECIMAL IN EXCEL

Ryanr,

I hav this as weight (23.4) and it is huge list & i did tried below
suggestion earlier,
but in that case i have to insert one more column ,change & after that delte
the other column.

i 'm trying get this in one shot.

"RyanR" wrote:



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?


In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's the
project?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default HOW TO CHANGE DECIMAL IN EXCEL

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 ---


"manovi" wrote:

Ryanr,

I hav this as weight (23.4) and it is huge list & i did tried below
suggestion earlier,
but in that case i have to insert one more column ,change & after that delte
the other column.

i 'm trying get this in one shot.

"RyanR" wrote:



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?


In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's the
project?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default HOW TO CHANGE DECIMAL IN EXCEL

tks mate...

i think should go with 3rd option.

"RyanR" wrote:

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 ---


"manovi" wrote:

Ryanr,

I hav this as weight (23.4) and it is huge list & i did tried below
suggestion earlier,
but in that case i have to insert one more column ,change & after that delte
the other column.

i 'm trying get this in one shot.

"RyanR" wrote:



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?

In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's the
project?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default HOW TO CHANGE DECIMAL IN EXCEL

Try this simple procedu

enter 1000 into a new, unused cell,
right click in the cell and choose "Copy",
select the cells you wish to change,
right click in that selection and choose "Paste Special",
click on <multiply,
then <OK

And you're done.

Clear the cell with the 1000 in it.
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"manovi" wrote in message
...
tks mate...

i think should go with 3rd option.

"RyanR" wrote:

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 ---


"manovi" wrote:

Ryanr,

I hav this as weight (23.4) and it is huge list & i did tried below
suggestion earlier,
but in that case i have to insert one more column ,change & after that
delte
the other column.

i 'm trying get this in one shot.

"RyanR" wrote:



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?

In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's
the
project?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default HOW TO CHANGE DECIMAL IN EXCEL

Doh! I forgot about that simple method :D
--
Cheers,
RyanR

--- pls click yes if I''ve helped you ---


"RagDyeR" wrote:

Try this simple procedu

enter 1000 into a new, unused cell,
right click in the cell and choose "Copy",
select the cells you wish to change,
right click in that selection and choose "Paste Special",
click on <multiply,
then <OK

And you're done.

Clear the cell with the 1000 in it.
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"manovi" wrote in message
...
tks mate...

i think should go with 3rd option.

"RyanR" wrote:

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 ---


"manovi" wrote:

Ryanr,

I hav this as weight (23.4) and it is huge list & i did tried below
suggestion earlier,
but in that case i have to insert one more column ,change & after that
delte
the other column.

i 'm trying get this in one shot.

"RyanR" wrote:



"manovi" wrote:

Pls tell me how to change 23.40 in to 23400 in excel ?

In what context are trying to do this?
23400 = 23.40 * 1000

Can you enlighten as to why you are trying to do this... e.g. what's
the
project?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to change decimal answers in excel to the power of Rosco Excel Worksheet Functions 2 February 24th 07 08:54 PM
Cannot a change a number 10.0 to 10 , cannot take out the decimal kmuralishankar Excel Discussion (Misc queries) 3 January 23rd 06 07:47 PM
Excel ActiveX Scrollbar - change from integer to decimal Tonette Excel Discussion (Misc queries) 2 October 15th 05 03:41 PM
How do I change the number of decimal places displayed in Excel Dan Excel Discussion (Misc queries) 1 February 23rd 05 10:31 PM
How can I change decimal amounts to end with .95 naclu Excel Worksheet Functions 2 January 11th 05 05:58 PM


All times are GMT +1. The time now is 06:12 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"