HI i have the following in my data Text(ThisItem.'Start Date' & "-" & ThisItem.'End Date', "dd/mm/yyyy") and it is still showing in mm/dd/yy instead of dd/mm/yy. is there another way to fix it. I am trying to display the start and end date of an event on the one line
Try this:
Concatenate(
Text(ThisItem.'Start Date',"dd/mm/yyyy"),
" - ",
Text(ThisItem.'End Date', "dd/mm/yyyy")
)