Select to view content in your preferred language

Updating Feature Class Using Excel Worksheet with Different Schema

1513
2
Jump to solution
08-23-2022 07:21 AM
JoshBillings
Frequent Contributor

Hey all,

I have a feature class for Capital Projects that are occurring throughout our city. I am needing data (financial information) updated for these Capital Projects without having to manually update each project. These projects are identified using a unique "Program Code."

The data from our Financial Management Software (FMS) exports the data in a non-GIS friendly Excel document. 

Is there a way to update the data in our Capital Projects feature class with the data from the FMS Excel document?

See attached Excel docs as an example.

0 Kudos
1 Solution

Accepted Solutions
RhettZufelt
MVP Notable Contributor

Depends on if you want to transfer all the data columns from the excel worksheet, or just update the empty columns.

You can use Add Join using your common ID field to create a temporary join to the table, then calculate the columns you want using joined table.

You can also use Join Field using your common ID field and it will append the joined columns to the feature class table.

R_

 

View solution in original post

2 Replies
RhettZufelt
MVP Notable Contributor

Depends on if you want to transfer all the data columns from the excel worksheet, or just update the empty columns.

You can use Add Join using your common ID field to create a temporary join to the table, then calculate the columns you want using joined table.

You can also use Join Field using your common ID field and it will append the joined columns to the feature class table.

R_

 

JoshBillings
Frequent Contributor

Thanks Rhett! 

0 Kudos