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

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
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,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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