ashtothemac
New Member
- Joined
- Jul 18, 2020
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
I am trying to create a summary page for a large data collection workbook. I am running into an issue however when trying to drag my formula down through the column.
The formula is set to show as Done if there is a value in cells F4:F15 using =IF(COUNTBLANK(Sheet1!F4:F15)=12, "","Done")
I want to be able to drag it down so that the cell range will be discrete and not overlap, so that the next cell will show as Done if there is a value in F16:F27.
If this were a smaller workbook I would have given up by now, but its too large to manually type the functions.
A colleague suggested using INDIRECT and a function similar to this:
=IF(COUNTBLANK(INDIRECT("Sheet!F"&(ROW(D3)-1)*3+1):INDIRECT("Sheet1!F"&(ROW(D3)-1)*3+3))=3, "","Done")
But I am not familiar enough with it to know how to change the number of cells it is referencing. I will need to change it to reference between 2- 14 cells depending on the data.
The formula is set to show as Done if there is a value in cells F4:F15 using =IF(COUNTBLANK(Sheet1!F4:F15)=12, "","Done")
I want to be able to drag it down so that the cell range will be discrete and not overlap, so that the next cell will show as Done if there is a value in F16:F27.
If this were a smaller workbook I would have given up by now, but its too large to manually type the functions.
A colleague suggested using INDIRECT and a function similar to this:
=IF(COUNTBLANK(INDIRECT("Sheet!F"&(ROW(D3)-1)*3+1):INDIRECT("Sheet1!F"&(ROW(D3)-1)*3+3))=3, "","Done")
But I am not familiar enough with it to know how to change the number of cells it is referencing. I will need to change it to reference between 2- 14 cells depending on the data.