考虑到第一列的行,如何格式化第二列的行。
描述::-
我有一列说excel中的A列有8行。
数据存在于某些行中,某些行为空白。例如
1st row tiger
2nd row lion
3rd row (blank no data present)
4th row (blank no data present)
5th row cow
6th row (blank no data present)
7th row cat
8th row mouse.
现在我的第二列说 excel 中的 B 连续包含 85 行中的数据。例如
1st row 1
2nd row 1
3rd row 3
4th row 4
5th row 10
现在我想根据第一列排列第二列。
如下所示:
column A Column B
1st row tiger 1
2nd row lion 1
3rd row (blank no data present)
4th row (blank no data present)
5th row cow 3
6th row (blank no data present)
7th row cat 4
8th row mouse. 10
由于我有大量数据,我需要一个公式来做到这一点。
请提出相同的建议。