Copy Formula Into Certainty Range

muhammad susanto

Well-known Member
Joined
Jan 8, 2013
Messages
2,077
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
hi all..

how to copy down this formula to make it correct...
Code:
[COLOR=#333333]=VLOOKUP($N$2;'Input BGN'!$A:$BV;72;FALSE)[/COLOR]

i want to copy copy down that's formula into :
row L188
row L215
etc...

interval rows 27
i have trying INT((ROWS($1:41)-1)/27)..but i don't know use it...(combine)
how to fix it?

thanks in advance...

m.susanto
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
i found
Code:
[COLOR=#333333]=IF(Mod(Row()-134,27) = 0, Do formula, Do something else)[/COLOR]

[COLOR=#333333]the -134 takes row(161) and makes it 27[/COLOR]
[COLOR=#333333]row (188) becomes 54 (twice 27 so Mod(188 - 134, 27) = 0.[/COLOR]

but i don't know use & combine with =VLOOKUP($N$2;'Input BGN'!$A:$BV;72;FALSE)

hope someone would help me out..
 
Upvote 0
Try: =IF(MOD(ROW()-ROW(L$188),27),"",VLOOKUP($N$2,'Input BGN'!$A:$BV,72,FALSE))

(I haven't tried to adjust to use your ";' separators)
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,255
Members
449,075
Latest member
staticfluids

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