Did you try an expression like: https://learn.microsoft.com/en-us/azure/logic-apps/workflow-definition-language-functions-reference#formatdatetime
but I see you have yyyy-MM-dd, you may need to split by "-" and reorder to dd-MM-yyyy before using formatdatetime
a split would look like this:
formatDateTime(concat(split(outputs('Compose'),'-')[2],'-',split(outputs('Compose'),'-')1,'-',split(outputs('Compose'),'-')[0]))
on your case replace with the excel field
formatDateTime(concat(split(body('Get_a_row')?['Date_Delivered'])[2],'-',split(body('Get_a_row')?['Date_Delivered'])1,'-',split(body('Get_a_row')?['Date_Delivered'])[0]))
maybe a reorder without format may do it
concat(split(body('Get_a_row')?['Date_Delivered'])[2],'-',split(body('Get_a_row')?['Date_Delivered'])1,'-',split(body('Get_a_row')?['Date_Delivered'])[0])
Please don't forget to click on "Accept Answer" or the vote button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer.