Hello all!
I have an event that require card access to validate attendance.
Note: The card scanner populates cell B2 and overwrites the same cell after every scan.
[TABLE="class: cms_table_grid, width: 300"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID SCANNER[/TD]
[TD][/TD]
[TD]SCANNED[/TD]
[TD]ID[/TD]
[TD]NAME[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]9000[/TD]
[TD][/TD]
[TD][/TD]
[TD]8000[/TD]
[TD]
BURNO[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]Y[/TD]
[TD]9000[/TD]
[TD]JAMES[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]5000[/TD]
[TD]ADAM[/TD]
[/TR]
</tbody>[/TABLE]
When there is an ID match after the scan, I would like "Y" added in the SCANNER column then copy and paste as value within the same cell.
Philwojo gave me a formula to use -
Note: multiple scans are also possible.
I am completely stumped on how to make this work. Any ideas and help is appreciated.
I have an event that require card access to validate attendance.
Note: The card scanner populates cell B2 and overwrites the same cell after every scan.
[TABLE="class: cms_table_grid, width: 300"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID SCANNER[/TD]
[TD][/TD]
[TD]SCANNED[/TD]
[TD]ID[/TD]
[TD]NAME[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]9000[/TD]
[TD][/TD]
[TD][/TD]
[TD]8000[/TD]
[TD]
BURNO[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]Y[/TD]
[TD]9000[/TD]
[TD]JAMES[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]5000[/TD]
[TD]ADAM[/TD]
[/TR]
</tbody>[/TABLE]
When there is an ID match after the scan, I would like "Y" added in the SCANNER column then copy and paste as value within the same cell.
Philwojo gave me a formula to use -
Code:
=IF(ISERROR(VLOOKUP(E6,$B$4,1,0)),"","Y")
I am completely stumped on how to make this work. Any ideas and help is appreciated.