Hi All,
I have a SharePoint list that feeds a calculated date column into a Word template. All dates should just be dates with no time included.
So it's set up something like this:
SHAREPOINT LIST
SharePoint List: Date Column 1
Date and Time column, Date only is selected
Sharepoint List: Date Column 2
=IF(WEEKDAY([DateColumn1])=6,[DateColumn1]+3,[DateColumn1]+1)
(Basically, if a date is selected, return the following date, if Friday is selected, return the following Monday)
POWER FLOW
Power flow: Date Column 2 is fed into a custom Document type (Doc Bookings). Doc Bookings Column 2 is set as Date and time, Date only.
WORD
Doc Bookings Column 2 is inserted into the placeholder document via document properties. When the flow triggers it creates a copy of the document with the document properties filled in.
Throughout this workflow only the date shows up. When the word document is generated, it suddently populates a time.

I'm stumped as to where it's getting this time and how to get rid of it?