On an Opportunity Proposal, we want to show/output the Opportunity Name and Start and End dates of the opportunity as the title on the Proposal.
We’ve created a calculated field...named “OpportunityNameAndDates” and entered the Expression as:
[OpportunityName] + Char(10) + '(' + [OpportunityStartDate] + ' - ' + [OpportunityEndDate] + ')'
But this prints/outputs as:
Opportunity Name
(11/01/2025 00:00:00 - 04/30/2026 00:00:00)
Would anyone know how we can drop the Time portion/display and get to:
Opportunity Name
(11/01/2025 - 04/30/2026)
I’ve looked at and tried some of the functions available within the Expression Editor but can’t find extensive help for the Expression Editor.