We have table A like this:
Name Website Description
Freelensia https://www.example.com "Interpreter reservation platform"
フリレンシア https://www.example.com/ja "通訳予約プラットフォーム"
"Phi Liên Á" https://www.example.com/vi "Nền tảng đặt hẹn với phiên dịch viên trực tuyến"
非連亜 https://www.example.com/zh "口譯預約平台"
where Name is the unique IDKey for this table.
Now, once in a while we would like to batch update table A with new values from table B like this:
Name Website Description
Freelensia [blank] "Reserve interpreters online"
フリレンシア [blank] "オンラインで通訳者を予約する"
"Phi Liên Á" [blank] "Đặt lịch trực tuyến với phiên dịch viên"
- Name will be the same
- Cells with blank value will be treated as no change
- Only rows where there are new values would be included. You can see the 4th (ID=非連亜) row of table A is not in table B, as there is no new value to be updated here.
Is there a macro that does something similar to this out there?
The real table A has about 2,000 rows and 20 columns.