You can use JavaScript to do this. It should pick up your current field, remove the last part, and then store the embedded data again.
The only issue would be if you would need to use the data on the first page you display?
You access the JavaScript by clicking on the question (can even be just text/graphic) and then click on the “</> Javascript” under options.
Here you can see 3 options where to put the JavaScript, and you should add this under the addOnReady function.
It should look something like this:
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
var openDate = "${e://Field/OpenDate}"; // Get the data from your field
const newOpenDateArray = openDate.split(" "); // Split it by the space in the middle
Qualtrics.SurveyEngine.setEmbeddedData('OpenDate',newOpenDateArray[0]); // add the first part of the text back to the field.
});