Auto Fill Number With Condition

Naresh Maloo

New Member
Joined
Sep 4, 2014
Messages
12
In sheet one i have roll no 101 in cell A1 and 200 in cellA2. I want in sheet two auto fill roll no from column A1 to A200. with conditionthat every 10 roll no i want to skip two cell and then again continue roll no.(ForEx. 101,102,103,104,105,106,107,108,109,110,Skip two cell , 111,112, & SoOn..... How can it possible with formulas.Thanks in advance.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Is this a Power BI question?

A1:=Sheet1!$A$2
A2:=IF(MAX($A$1:$A1)>=Sheet1!$A$3,"",IF($A1="",IF(MOD(COUNTIF($A$1:$A1,""),2)=0,MAX($A$1:$A1)+1,""),IF(MOD($A1,10)>0,$A1+1,"")))
 
Upvote 0

Forum statistics

Threads
1,226,729
Messages
6,192,696
Members
453,747
Latest member
tylerhyatt04

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