Custom Number Formula to Make Adding Mark "." (Dot) Between 2 Number

muhammad susanto

Well-known Member
Joined
Jan 8, 2013
Messages
2,081
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
hi all...

i need your help to figure it out this problem use Custom Number Formula
[TABLE="class: tableizer-table"]
<thead>[TR="class: tableizer-firstrow"]
[TH]entry
[/TH]
[TH]expected result[/TH]
[/TR]
</thead><tbody> [TR]
[TD]11[/TD]
[TD]1.1[/TD]
[/TR]
[TR]
[TD]23[/TD]
[TD]2.3[/TD]
[/TR]
[TR]
[TD]41[/TD]
[TD]4.1[/TD]
[/TR]
[TR]
[TD]32[/TD]
[TD]3.2[/TD]
[/TR]
</tbody>[/TABLE]

any help greatly appreciated...

sst.
 
Last edited:

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Are the entries always just 2 digits? If so then use this:
=CONCAT(LEFT(A2,1),".",RIGHT(A2,1))
Where A2 would be your entry number.
 
Upvote 0
hi all...

i need your help to figure it out this problem use Custom Number Formula
[TABLE="class: tableizer-table"]
<thead>[TR="class: tableizer-firstrow"]
[TH]entry
[/TH]
[TH]expected result[/TH]
[/TR]
</thead><tbody> [TR]
[TD]11[/TD]
[TD]1.1[/TD]
[/TR]
[TR]
[TD]23[/TD]
[TD]2.3[/TD]
[/TR]
[TR]
[TD]41[/TD]
[TD]4.1[/TD]
[/TR]
[TR]
[TD]32[/TD]
[TD]3.2[/TD]
[/TR]
</tbody>[/TABLE]
I think either of the following Custom Formatting type patterns should do what you want, your choice...

0\.0

or...

0"."0
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,705
Messages
6,173,985
Members
452,540
Latest member
haasro02

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top