Forum Discussion
ean-1501
Aug 14, 2021Copper Contributor
convert to another date-format
I often select data from my bank-account and they use the date-format dd.mm.yyyy but to use dates to manage my data, I use the format dd-mm-yyyy. How to convert to this format in an easy way ? I hav...
mathetes
Aug 14, 2021Gold Contributor
Here's a formula that will convert your bank's dates (assuming they're in there as text) to a standard Excel formatted datevalue
=DATE(VALUE(RIGHT(A1,4)),VALUE(LEFT(A1,2)),(VALUE(MID(A1,4,2))))