autofill formula?

mjdalmalti

New Member
Joined
Mar 11, 2022
Messages
9
Office Version
  1. 2016
Platform
  1. Windows
i have two sheet , as you see in first sheet (sheet1) there is a column first row have a serial number and second row is type

New Microsoft Excel Worksheet.xlsx
A
11234
Sheet1

1.png


i wanna separate them from each other in second sheet to look like that

New Microsoft Excel Worksheet.xlsx
B
7
Sheet2



2.png


I tried to write this code in the first cell on the second sheet
Excel Formula:
=Sheet1!A1
=Sheet1!A3
and make auto fill but it does not work and make duplicated
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Place this in cell A1 and copy down:
Excel Formula:
=OFFSET(Sheet1!$A$1,(ROW()-1)*2,0)

Place this in cell B1 and copy down:
Excel Formula:
=OFFSET(Sheet1!$A$2,(ROW()-1)*2,0)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

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