Hello @dhevilz
You can format the date as you want in the calculated field but not in the date/time field.
For example, assuming you want to get today’s date in the format described. Insert a calculated field in the form, and enter the piece of code below as its equation:
(function(){
var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
return DAY(TODAY())+' '+months[MONTH(TODAY())-1]+' '+YEAR(TODAY());
})()
Best regards.