PPIM_RPA
(PPIM RPA)
August 17, 2023, 2:24pm
1
Address List.xlsx (10.3 KB)
ZIPS County FIPS.xlsx (2.4 MB)
Happy Thursday Everyone,
I am using the address list to search for items on the web.
The FIPS numbers are necessary for later steps in the process.
Is there a way to to use LINQ and have the bot read the FIPS file and return the FIPS number that corresponds to the ZIP code in each row of the address list file?
Thank you
postwick
(Paul Ostwick)
August 17, 2023, 2:33pm
2
LINQ doesnāt read files.
Just use the Workbook Read Range to read both into separate datatables, then use Lookup Data Table to find the value you need.
Or you could read both into datatables, then do a Join Data Table once to get a single datatable containing all the data you need.
Main (1).xaml (8.8 KB)
Refer the worflow aboveā¦
Thank you
PPIM_RPA
(PPIM RPA)
August 17, 2023, 8:21pm
4
Thank you.
Is is possible to return the value of āFIPSā as a string that can be written into address sheet?
Hey @PPIM_RPA ,
Here is the workflow for your requirement.
Main (1) (1).xaml (8.8 KB)
The LINQ expression used in this:
The items under column āFIPSā are converted to string and then added to the address sheet.
Expected output:
1 Like
PPIM_RPA
(PPIM RPA)
August 18, 2023, 10:50am
6
Thank you. That was helpful
Your welcomeā¦
Happy Automation.
1 Like
system
(system)
Closed
August 21, 2023, 11:22am
8
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.