Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Suppose A1 number is 120000.00. Now I want to separate it by 1000 & 100, i.e.
1,20,000.00. If I format the cell - Number & click on 1000 separatetor. It show like 120,000.00. Is there any custom format to show 1,20,000.00 in excel 2003 |
#2
![]() |
|||
|
|||
![]()
Yes, there is a custom format that you can use to show the number with 100 separators instead of 1000 separators in Excel 2003. Here are the steps to do it:
Now, the number in the cell will be displayed with 100 separators instead of 1000 separators. For example, if the cell contains the number 120000.00, it will be displayed as 1,20,000.00 after applying the custom format.
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() -- Gary''s Student - gsnu200758 "Montu" wrote: Suppose A1 number is 120000.00. Now I want to separate it by 1000 & 100, i.e. 1,20,000.00. If I format the cell - Number & click on 1000 separatetor. It show like 120,000.00. Is there any custom format to show 1,20,000.00 in excel 2003 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Format Cells... Number Custom:
0\,00\,000.00 -- Gary''s Student - gsnu200758 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Many Many Thanks to you - Gray. Hoping get more support in future. Have nice
day. "Gary''s Student" wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
May you also have a nice day.
-- Gary''s Student - gsnu200758 "Montu" wrote: Many Many Thanks to you - Gray. Hoping get more support in future. Have nice day. "Gary''s Student" wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Nov 23, 5:53 pm, Gary''s Student
wrote: May you also have a nice day. -- Gary''s Student - gsnu200758 "Montu" wrote: Many Many Thanks to you - Gray. Hoping get more support in future. Have nice day. "Gary''s Student" wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 Sorry, but when i write 100 it shows 0,00,100.00 that looks odd. when a figure should be less that 100,000.00 then it should look as usual. Help required. |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi, shaqil !
"Gary''s Student" wrote: Format Cells... Number Custom: 0\,00\,000.00 Sorry, but when i write 100 it shows 0,00,100.00 that looks odd. when a figure should be less that 100,000.00 then it should look as usual... you can "hide" leading commas if you "play" with custom formats (i.e.) [=100000]#\,##\,##0.00;#,##0.00 [9999999]##\,##\,##\,##0;[99999]##\,##\,##0;#,##0 for negative numbers try with the following custom number format: [<-9999999]-##\,##\,##\,##0;[<-99999]-##\,##\,##0;#,##0 (however) you won't be able to mix positive/negative number using only one format so, you might want to give a try an extra cell/column and ws-functions (i.e.) assuming the number in 'A1': =text(a1,rept("##\,",match(len(abs(a1)),{3;4;6;8})-1)&"##0") hth, hector. |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
kindly send the formulae to use 100 separator instead of 1000 seperator in MS excel while numbering
On Friday, November 23, 2007 12:43 AM monisankar_dutt wrote: Suppose A1 number is 120000.00. Now I want to separate it by 1000 & 100, i.e. 1,20,000.00. If I format the cell - Number & click on 1000 separatetor. It show like 120,000.00. Is there any custom format to show 1,20,000.00 in excel 2003 On Friday, November 23, 2007 6:07 AM GarysStuden wrote: -- Gary''s Student - gsnu200758 "Montu" wrote: On Friday, November 23, 2007 6:09 AM GarysStuden wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 On Friday, November 23, 2007 7:41 AM monisankar_dutt wrote: Many Many Thanks to you - Gray. Hoping get more support in future. Have nice day. "Gary''s Student" wrote: Submitted via EggHeadCafe Profiling and Optimizing VBA http://www.eggheadcafe.com/tutorials...izing-vba.aspx |
#10
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
kindly send the formulae to use 100 separator instead of 1000 seperator in MS excel while numbering
On Friday, November 23, 2007 12:43 AM monisankar_dutt wrote: Suppose A1 number is 120000.00. Now I want to separate it by 1000 & 100, i.e. 1,20,000.00. If I format the cell - Number & click on 1000 separatetor. It show like 120,000.00. Is there any custom format to show 1,20,000.00 in excel 2003 On Friday, November 23, 2007 6:07 AM GarysStuden wrote: -- Gary''s Student - gsnu200758 "Montu" wrote: On Friday, November 23, 2007 6:09 AM GarysStuden wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 On Friday, November 23, 2007 7:41 AM monisankar_dutt wrote: Many Many Thanks to you - Gray. Hoping get more support in future. Have nice day. "Gary''s Student" wrote: On Wednesday, March 16, 2011 2:15 AM barun sinha wrote: kindly send the formulae to use 100 separator instead of 1000 seperator in MS excel while numbering Submitted via EggHeadCafe Task Parallel Library | Continuation Tasks (.NET Framework 4.0) http://www.eggheadcafe.com/tutorials...mework-40.aspx |
#11
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Kindly read the answer Gary's Student gave below regarding custom formatting.
Gord Dibben MS Excel MVP On Wed, 16 Mar 2011 06:16:04 GMT, barun sinha wrote: kindly send the formulae to use 100 separator instead of 1000 seperator in MS excel while numbering On Friday, November 23, 2007 12:43 AM monisankar_dutt wrote: Suppose A1 number is 120000.00. Now I want to separate it by 1000 & 100, i.e. 1,20,000.00. If I format the cell - Number & click on 1000 separatetor. It show like 120,000.00. Is there any custom format to show 1,20,000.00 in excel 2003 On Friday, November 23, 2007 6:07 AM GarysStuden wrote: -- Gary''s Student - gsnu200758 "Montu" wrote: On Friday, November 23, 2007 6:09 AM GarysStuden wrote: Format Cells... Number Custom: 0\,00\,000.00 -- Gary''s Student - gsnu200758 On Friday, November 23, 2007 7:41 AM monisankar_dutt wrote: Many Many Thanks to you - Gray. Hoping get more support in future. Have nice day. "Gary''s Student" wrote: Submitted via EggHeadCafe Profiling and Optimizing VBA http://www.eggheadcafe.com/tutorials...izing-vba.aspx |
#12
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Mar 15, 11:16*pm, barun sinha wrote:
kindly send the formulae to use 100 separator instead of 1000 seperator in MS excel while numbering You are responding to a thread that is nearly 3.5 years old. You do not really think anyone is paying attention, do you? It would be better to start a new thread of your own. In any case, it would behoove you to read the entire thread. You should have noticed that Gary's Student posted a corrected response with the following suggestion: Custom format 0\,00\,000.00 Personally, I don't think that is adequate since it can result in the odd result ,,123 for smaller values. I would suggest: Custom format [<1000]0.00;[<100000]0\,000.00;0\,00\,000.00 Unfortunately, that works only up to 99,99,999.99. Larger values will have the form 123,45,678.99, which is probably not desirable. Nothing you can do about it, though, at least not without an event macro. The condition-value custom format is limited to conditions, at least in XL2003. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
In Excel, how do I change the argument separator in a function fr. | Setting up and Configuration of Excel | |||
How do we add a separator in Excel 2007 menu using VBA | Excel Discussion (Misc queries) | |||
Save a csv or text file in Excel 2000 with choice of separator | Excel Discussion (Misc queries) | |||
Excel separator pages | Excel Discussion (Misc queries) | |||
thousand separator | Setting up and Configuration of Excel |