I've got a SP list with a standard "Date and Time Picker" from infopath, resulting in a field which typically will appear as, e.g. "6/15/17 2:25:43 PM". My boss wants to keep this output as-is for our records, but does not want this field in the list view. Instead she wants a field that only shows the date (everything in the string before the first space " "). I am able to retrieve this in a report I've built by using the following SQL code
DATEVALUE(LEFT(DateField,FIND(" ",DateField)))
But when it comes to creating a workflow to populate a new field with this substring, I am at a loss. I've run several searches and the only SQL options for workflows appear to be the 'Utility Actions' (Extract Substring from End of String, Extract Substring from Index of String, Extract Substring from Start of String, Extract Substring of String from Index with Length) - none of which will allow the same SQL syntax I'm attempting since they only seem to want to accept integers or fields, not functions or even a " ".
Is there a way to execute more complex SQL scripts within workflows outside of the Utility Action options OR a way to split a string based on a delimiter/accomplish what my boss is asking for (short of going back to infopath)?