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

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
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,215,353
Messages
6,124,464
Members
449,163
Latest member
kshealy

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