Series formula needed

pseadrift

New Member
Joined
Mar 15, 2017
Messages
3
Hi All,
I am attempting to use a formula to create a repeating series that increments the whole number by one when the series is complete. For example, 1.01, 1.02, 1.03, 1.04, 2.01, 2.02, 2.03, 2.04, 3.01, etc.

I am using this formula but it does not give me two decimal places. It gives me this: 1.1, 1.2, 1.3, 1.4, 2.1, 2.2, 2.3, 2.4, 3.1, etc.

=CEILING(ROWS(A$1:A1)/4,1)&"."&MOD(ROWS(A$1:A1)-1,4)+1

Any suggestions?

Thank you in advance!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Consider adding a '0' to your formula after the ".":
=CEILING(ROWS(A$1:A1)/4,1)&".0"&MOD(ROWS(A$1:A1)-1,4)+1

I haven't tried to assess your calculations but that appears to work.
 
Last edited:
Upvote 0
Consider adding a '0' to your formula after the ".":
=CEILING(ROWS(A$1:A1)/4,1)&".0"&MOD(ROWS(A$1:A1)-1,4)+1

I haven't tried to assess your calculations but that appears to work.

I was so close. LOL Works like a charm! That is AWESOME! Thank you sooo much BrianJN1! ;)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,559
Members
449,089
Latest member
Motoracer88

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