
Announcements
Hi, I am trying to update a datetime field from D365 using the Patch function. I try the following: Patch(Opportunities, LookUp(Opportunities, Opportunity=GUID(Param("OpportunityId"))), {'Last contact':Now()})
but the time is always 00:00:00. Field in D365 is set to 'User local' type so it should be able to set the time.
Thanks in advance
Hi @ZARE thanks for posting in the community. In reviewing your situation, I found the following documentation which states the following formula will display the current date and time: Text( Now(), "mm/dd/yyyy hh:mm:ss" )
@Anonymous