YOUNAN

Board Regular
Joined
Feb 10, 2015
Messages
101
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi,

I need a formula to
cell K3 to equal n3 from sheet with name 60001
cell k4 to equal n3 from sheet with name 60002
cell K5 to equal n3 from sheet with name 60003
and so on.

or in another words if i drag down the formula it will change the sheet number and increase it by 1, without changing the equal cell which is N3

Thanks in advance

best regards
 
Last edited:

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hello,

Try this code:
Code:
Sub FormulaK3UsingN()
    Dim i As Long
    
    For i = 3 To ActiveWorkbook.Sheets.Count
        Cells(i, 11).Formula = "=" & Sheets(i).Name & "!N3"
    Next i
End Sub

Make sure you run this in the sheet that you want the formulas in!
 
Upvote 0
Hi,

Thanks a lot, it worked as charm.

Best Regards
 
Upvote 0

Forum statistics

Threads
1,215,509
Messages
6,125,216
Members
449,215
Latest member
texmansru47

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