Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default how do i make #'s auto and 000 behind large numbers

I want to know if & how i can make an entry automatically add the last 000
behind a large number entered, for example I want to be able to type in 456
and it look like 456,000

Thanks
Mike
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default how do i make #'s auto and 000 behind large numbers

If you want the number still to be 456, but display as 456,000, then use
custom format #",000"

If you want to type in 456 but then store it as 456000, use Tools/ Options/
Edit/ Fixed decimal places: -3, but be careful of this as it may confuse
you.
--
David Biddulph

"mastermk" wrote in message
...
I want to know if & how i can make an entry automatically add the last 000
behind a large number entered, for example I want to be able to type in
456
and it look like 456,000

Thanks
Mike



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default how do i make #'s auto and 000 behind large numbers

Click on the cell and:

Format Cells... Number Custom General",000"

This will give the desired appearance, (but retain the value).
--
Gary''s Student - gsnu200908


"mastermk" wrote:

I want to know if & how i can make an entry automatically add the last 000
behind a large number entered, for example I want to be able to type in 456
and it look like 456,000

Thanks
Mike

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default how do i make #'s auto and 000 behind large numbers

ok, guess I worded my question wrong, I want to enter any size # and have it
auto add ,000 to make it times the number entered times 1000, for example...

123456 = 123,456,000 .. one hundred twenty three million four hundred fifty
six thousand.

Thanks
Mike

"Gary''s Student" wrote:

Click on the cell and:

Format Cells... Number Custom General",000"

This will give the desired appearance, (but retain the value).
--
Gary''s Student - gsnu200908


"mastermk" wrote:

I want to know if & how i can make an entry automatically add the last 000
behind a large number entered, for example I want to be able to type in 456
and it look like 456,000

Thanks
Mike

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default how do i make #'s auto and 000 behind large numbers

In which case you need the second of the two options which I suggested
earlier (Tools/ Options/ Edit/ Fixed decimal places :-3).
--
David Biddulph

mastermk wrote:
ok, guess I worded my question wrong, I want to enter any size # and
have it auto add ,000 to make it times the number entered times 1000,
for example...

123456 = 123,456,000 .. one hundred twenty three million four hundred
fifty six thousand.

Thanks
Mike

"Gary''s Student" wrote:

Click on the cell and:

Format Cells... Number Custom General",000"

This will give the desired appearance, (but retain the value).
--
Gary''s Student - gsnu200908


"mastermk" wrote:

I want to know if & how i can make an entry automatically add the
last 000 behind a large number entered, for example I want to be
able to type in 456 and it look like 456,000

Thanks
Mike





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how do i make #'s auto and 000 behind large numbers

You OK with event code behind the worksheet?

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Count 1 Then Exit Sub
If Not IsNumeric(Target.Value) Then Exit Sub
Application.EnableEvents = False
With Target
.Value = .Value * 1000
Application.EnableEvents = True
End With
End Sub


Gord Dibben MS Excel MVP

On Wed, 4 Nov 2009 12:36:01 -0800, mastermk
wrote:

ok, guess I worded my question wrong, I want to enter any size # and have it
auto add ,000 to make it times the number entered times 1000, for example...

123456 = 123,456,000 .. one hundred twenty three million four hundred fifty
six thousand.

Thanks
Mike

"Gary''s Student" wrote:

Click on the cell and:

Format Cells... Number Custom General",000"

This will give the desired appearance, (but retain the value).
--
Gary''s Student - gsnu200908


"mastermk" wrote:

I want to know if & how i can make an entry automatically add the last 000
behind a large number entered, for example I want to be able to type in 456
and it look like 456,000

Thanks
Mike


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
Auto rounding of large numbers GKW in GA Excel Discussion (Misc queries) 2 April 21st 08 06:17 PM
How can I make my rather large spreadsheet readable? timothyreed Excel Discussion (Misc queries) 2 February 5th 07 11:37 PM
how do I make a graph with one very large piece of data taleman Charts and Charting in Excel 2 October 27th 06 07:48 PM
how to make excel auto enter increment invoice numbers. foster1929 Excel Discussion (Misc queries) 1 July 11th 06 03:05 AM
make large worksheet from workbook Cowtoon Excel Discussion (Misc queries) 5 December 6th 04 08:24 PM


All times are GMT +1. The time now is 05:55 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"