I have a calculated column in SharePoint which is formatted to show date only. However, when I included the field in a form on PowerApps, it displays both the date and time and I can't find a way to format it so it only shows the date. Any help would be really appreciated.
You need to use the DateValue function and it will convert your DateTime value into just a Date.
Simple example.
Now() expression gives both date and time
if you wrap DateValue(Now())), you only get the date.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.