Issues with Row Skipping and Deleting Every Other Cell in a Column

前端 未结 1 1926
面向向阳花
面向向阳花 2021-01-27 12:56

Suppose I want to match up one column with every second row of another column. That is A1 goes with B1, A2 goes with B3, A3 goes with B5, and so on. I tried using IF(MOD(ROW()

相关标签:
1条回答
  • 2021-01-27 13:22

    You could use Index() to get the data. =Index(b:b,row()+row()-row($A$1)).

    0 讨论(0)
提交回复
热议问题