Hi @Mike Kiser ,
You can try formatDateTime e.g.,
@formatDateTime('2011-09-12T00:00:00+00:00', 'M/1/yy')
@formatDateTime('2011-09-12T00:00:00+00:00', 'MM/01/yyyy')
@formatDateTime(coalesce(EmpEmployment.CustomDate2, EmpEmployment.benefitsEligibilityStartDate), 'M/1/yy')
Please check the below link for date formats:
https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/format-datetimefunction#supported-formats
Thanks!