Forum Discussion
Ma_SiNi
Apr 25, 2021Copper Contributor
a little help in using auto fill on formula
Hello, I want to use auto fill on some formulas but I want it to jump multiple rows instead of 1, like 33 rows in this example: row 1: =IF($A$1=Sheet2!$B3,Sheet2!$F9,0) row 2: =IF($A$1=She...
- Apr 26, 2021
Ma_SiNi Try this on row 1 and copy down:
=IF($A$1=OFFSET(Sheet2!$B$3,(ROW()-1)*33,0),OFFSET(Sheet2!$F$9,(ROW()-1)*33,0),0)
Riny_van_Eekelen
Apr 26, 2021Platinum Contributor
Ma_SiNi Try this on row 1 and copy down:
=IF($A$1=OFFSET(Sheet2!$B$3,(ROW()-1)*33,0),OFFSET(Sheet2!$F$9,(ROW()-1)*33,0),0)
- Ma_SiNiApr 26, 2021Copper Contributor
Thank you! it worked, the actual table starts from 6th row so I just had to change ROW()-1 to ROW()-6, I guess I need to learn more about OFFSET formula