Chatgpt 4 cannot parse .xlsx files

Every time I try to upload a .xlsx or .cvs file and it gives an error and the following message. It appears that we continue to experience technical difficulties accessing and analyzing the files you have attached. These technical issues are beyond my control and capabilities to resolve.
This is the python code for the attempt.

Attempt to read the Excel files provided for analysis

file_paths = [
‘/mnt/data/_custom-kitchen-cabinets-Dallas__bulk_us_2024-04-04_20-33-30.xlsx’,
‘/mnt/data/_electrical-services-Dallas__bulk_us_2024-04-04_20-19-30.xlsx’,
‘/mnt/data/_home-remodeling-Dallas__bulk_us_2024-04-04_20-31-50.xlsx’,
‘/mnt/data/_plumbing-services-Dallas__bulk_us_2024-04-04_20-26-34.xlsx’
]

Create a dictionary to hold the DataFrames

dfs = {}

Try loading each file into a DataFrame and adding to the dictionary

for file_path in file_paths:
try:
dfs[file_path] = pd.read_excel(file_path)
except Exception as e:
dfs[file_path] = e

dfs
Is anyone else having this problem, because I haven’t been able to load any files for about 3 days now.

3 Likes

Having the same issues for weeks. It drove me crazy

1 Like

I’m having the same issues the files and not complicated. It hasn’t analyzed error and it’s very frustrating.

1 Like

Having issues as well. Response is “It seems there was an issue accessing the content of the spreadsheet. Please re-upload the file and I will try again.”

Analysis is # Load the spreadsheet directly into a DataFrame and display the content to understand its structure
data = pd.read_excel(file_path, sheet_name=None)

Display the keys of the loaded data to show available sheets

data.keys()

Any one found any solutions yet ? I have tried excel, csv and pdf. But all throw same errors.

I updated my browser, cleared cache, enabled all permisions .

I am paid user, and using chatgpt-4o

Tried in: Chrome, Firefox, Edge browser

The best approach for me has been to open a new chat. Unfortunately data analyses is a weak (in development) feature.