I have been trying to perform data analysis on gold and usd data from Yahoo and the dates simply won't format I've tried everything from datevalue to TEXT(...,yyyy-mm-dd) nothing seems to be helping even chat gpt is useless here any help ill appreciate
I tried the datevalue formula which only brings up the *Value! Answer as well as the TEXT formula even trying to edit the cells either with text to columns or assigning the date values I want to the cell but the date remains unchanged
Well, first import pandas:
Then read the .csv file:
Convert it to datetime with
pd.to_datetime():And then make a new column as formatted_date:
Good luck!