Old post but this is how I fixed it in a dashboard. Convert to epoch, rename what you want the final field to be, then apply fieldformat to the result. | eval admin_appcreatedon=strptime(admin_appcreatedon,"%m/%d/%Y")
| rename admin_appcreatedon as "Created On"
| fieldformat "Created On" = strftime('Created On', "%m/%d/%Y")
... View more