I have a xls file that I cannot open in R. I've tried a lot and the best I got was something like:
data = read.table('D:/Usuario/pivo1/table.xls', sep = ';')
but the df comes in this form:

while it should be something like this:

Aditionally:
print(data[9,1])

We can see the numbers of interest. Dates, hours and etc. but this form, in line 9 and column 1 of the df.
None of the excel functions worked, this was the best result i got.
I have a dropbox link for the file access:
https://www.dropbox.com/scl/fi/jlo15oasidxrbvvbcl3ge/table.xls?rlkey=ny8804ox4yqb1nqs9wn33j5ak&dl=0
Thanks for the help, i still have no solution. Working manually on the data.
The file contains HTML for a table and is somehow saved with xls extension:
Somewhat surprisingly Excel can actually handle this, even though it does complain about format and extension mismatch.
You can open the file and parse the table with
{rvest}:Created on 2023-10-28 with reprex v2.0.2