需要从 B 列中获取数据并将相应的日期添加到 google 工作表中的新列
Need to take data from column B and add the corresponding date to new columns in google sheets
I have 3000+ rows of data like this. I need Columns to be Last Name, First Name, Card Number. I have tried =IF(A3 = "Last Name:", B3) which works but I have a bunch of FALSE cells.
防止误用:
=IF(A3 = "Last Name:", B3, )
数组使用:
=INDEX(IF(A3:A = "Last Name:", B3:B, ))
或者您可以使用过滤器:
=FILTER(B3:B, A3:A="Last Name:")
I have 3000+ rows of data like this. I need Columns to be Last Name, First Name, Card Number. I have tried =IF(A3 = "Last Name:", B3) which works but I have a bunch of FALSE cells.
防止误用:
=IF(A3 = "Last Name:", B3, )
数组使用:
=INDEX(IF(A3:A = "Last Name:", B3:B, ))
或者您可以使用过滤器:
=FILTER(B3:B, A3:A="Last Name:")