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:")
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:")