Hi,
I have 2 tables different sizes
the first one small, example:
tibble::tribble(
~Item, ~'0', ~'1',
"123", '30', '40',
"213", '20', '50',
"321", '10', '60',
)
The other one is huge with Item names and a description of the item, example:
tibble::tribble(
~Item, ~'something1', ~'something2', ~'Description',
"123", 'xxx', 'xxx', 'Description1',
"213", 'xxx', 'xxx', 'Description2',
"321", 'xxx', 'xxx', 'Description3',
)
Description column is the one I want to add to the small table, the first example