I want to see and edit the values on the excel sheet from Python.

Asked 2 years ago, Updated 2 years ago, 54 views

There are two Excel files, and the values included are as follows.

1) Part number, Yes/No, Exemption number
2) Part Number

If the part number in 2) matches the part number in 1) then the file in 2) will contain Yes/No,
I'm trying to fill in the Exemption number in Python.

Work
1)Create a dictionary from the file and save it as a py file.
 If there is a match between the contents of this file and the part number in 2) , please use the Yes/No, Exemption number in 2)
Fill in the designated cell.

Is this possible in the first place?

python excel

2022-09-30 18:55

1 Answers

Is this possible in the first place?

I think it's possible.

There are packages for Excel operations such as openpyxl, so I think you can use them.(Reference: Operate Excel in Python openpyxl)


2022-09-30 18:55

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.