Incremental number for a fetching data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Here's the next part of the puzzle Cell I2:
=IF(Sheet3!A2=Sheet3!A1,Sheet3!E3,Sheet3!E3)

Cell I3:
=IF(Sheet3!A5=Sheet3!A4,Sheet3!E6,Sheet3!E6)

the cell wich the data is fetched from, eg. Sheet3!E3 has to increase be
increments of 3
 
If your intention is to copy the formula down through more contiguous rows in
column I, try this in I2:
=IF(Sheet3!A4=Sheet3!A3,INDIRECT("Sheet3!E" &
(ROW()-1)*3),INDIRECT("Sheet3!E" & (ROW()-1)*3))

and copy down as needed. Please note, your formula returns the same value
whether the IF condition evaluates to TRUE or FALSE.

Hope this helps,

Hutch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top