Hi folks,
I have a SP list with a column that contains some unique IDs. What I want to do, is to be able to have an input box where I can type in something, it'll look up that column and if it matches / is a substring, use that row and create a new record with that information.
Existing column:
| ID (Read only) |
| 598733 |
| 323423 |
| 231142 |
| 214215 |
I'll type in 423 in a search box, it'll find the rows with that string/substring, in this case 323423, and I can then create a new row with that already existing information.
I don't want to edit the information in the (ID Read Only) column, just use it for a new column.
New table:
| Employee ID | Name |
| 323423 | John |
Is this possible?
Thanks!