I am trying to take data from a column "C4:C2048" and populate the first and every 4th cell in the adjacent column "D:D" with the values in the order they are in from column C.
I've tried variants on =IF(MOD(CELL("row",C5),5)=0,C5,"") but could not get it to be a draggable formula (so I do not have to spend weeks writing specific formula to get down to row 2048 or beyond (!!). These serials will be scanned onto the excel workbook with a barcode scanner, and "return" will be pressed to populate column C with the row of serial numbers.
Can anyone help me out please??
Update 1:
Here is an example of what I need:
The data in column C is barcode scanned in, needs to output with the spacing in column D (every 4 rows). Thanks again!
1,2,3,4,5,6,7,8,9,10
, are you trying to return1,4,5,8,9
or1,5,9
or1,5,6,10
or1,4,8
? Please provide a sample list and the expected output. Thanks, – Terry W