I want to save the latest data to excel For example:
df.to_excel('Excel A')
I have an excel file like this: Excel A
Datetime Cash
2020-01-01:13:00:00 100
2020-01-01:14:00:00 200
When I got the latest data like this:(data)
2020-01-01:15:00:00 300
How can I save the latest data to Excel A
thanks for answering.