Hello Everyone,
I have a spreadsheet with 7 Columns and I'm trying to append in Location to an existing field called location from a SQL DB. Below is an example of the spreadsheet I have( just a few columns). I only want to add/apped in the "location" where its blank to the existing spreadsheet from SQL.
Example of spreadsheet:
| NAme | Manager | Location | Date | Payment Code | Employee ID | | | | |
| John | Chris | Chicago | 01/01/2022 | r | 123 | | | | |
| Susie | Chris | | 02/01/2022 | d | 456 | | | | |
| Matt | Jessica | | 03/01/2022 | f | 789 | | | | |
| Logan | Jessica | California | 04/01/2022 | g | 101 | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
SQL DB Snapshot to pull location from(I already have the input with the correct connect string). ( keep in mind the SQL db has over a million records not 2, this just an example)
Table name: Employee Records
| Employee ID | Location | | | | | | | | |
| 456 | Nebraska | | | | | | | | |
| 789 | Texas | | | | | | | | |
End Result:
I only want to add/append in the "location" column where its blank to the existing spreadsheet from SQL. Whichever the location is as the SQL DB has millions of records.. We are appending by the SQL Columns only to get the right location name ( example Nebraska, texas)
please post solultion in yxmd, best solution I will vote on. Thank you.