Home > Enterprise >  Need to take data from column B and add the corresponding date to new columns in google sheets
Need to take data from column B and add the corresponding date to new columns in google sheets

Time:12-18

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.

CodePudding user response:

to prevent FALSE use:

=IF(A3 = "Last Name:", B3, )

for array use:

=INDEX(IF(A3:A = "Last Name:", B3:B, ))

or you can use filter:

=FILTER(B3:B, A3:A="Last Name:")
  • Related