79524905

Date: 2025-03-21 08:39:54
Score: 1.5
Natty:
Report link

If you want to place a column range's (say A1:A100's) n-th numerical value into non-sequential cells, put this formula in each desired cell:
{=INDEX(A1:A100,SMALL(IF(ISNUMBER(A1:A100),ROW(A1:A100)-MIN(ROW(A1:A100))+1),n))}

So for example if you want A1:A100's 3rd numerical value to be in cell C4, the formula in C4 would be:

{=INDEX(A1:A100,SMALL(IF(ISNUMBER(A1:A100),ROW(A1:A100)-MIN(ROW(A1:A100))+1),3))}

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: MarkY