Forum Discussion
MathGILLES
Apr 25, 2022Copper Contributor
The date format is wrong when I concatenate
Hello everyone, I'm quite new to this, sorry if maybe I missed the answer somwhere else. I'm trying to automate the creation of Gcal files for our work planning, which are in that format : ...
- Apr 25, 2022
MathGILLES You can use the TEXT function for this:
=CONCAT("WorkA";",";TEXT($B31;"mm/dd/yyyy");",";"10:00")
or
="WorkA,"&TEXT($B31;"mm/dd/yyyy")&",10:00"
HansVogelaar
Apr 25, 2022MVP
MathGILLES You can use the TEXT function for this:
=CONCAT("WorkA";",";TEXT($B31;"mm/dd/yyyy");",";"10:00")
or
="WorkA,"&TEXT($B31;"mm/dd/yyyy")&",10:00"
- MathGILLESApr 26, 2022Copper Contributor
HansVogelaar
It worked perfectly, thanks so much 🙂