Hi Waren,
I was wondering if you can assist with the issue I have with the dates, not displaying properly again for certain users, in a gallery??
The gallery should bring back a list of people whose birthday it is in Jan
there is also a gallery that show birthdays for the next month. This is showing the same dates as in the image below

Should look like this


Formula> Text>
Sort(Filter(Volunteers, IsBlank('Leaving Date')
&& !IsBlank('Date of Birth')
&& //(
Mid(Left(Text('Date of Birth'),Len(Text('Date of Birth')) - 5),4,2) = Mid(Left(Text(Now()),Len(Text(Now())) - 5),4,2)
//|| Mid(Left(Text('Date of Birth'),Len(Text('Date of Birth')) - 5),4,2) = Mid(Left(Text(DateAdd(Now(),1,Months)),Len(Text(Now())) - 5),4,2)
//)
), Mid(Left(Text('Date of Birth'),Len(Text('Date of Birth')) - 5),1,2), Ascending)
// GETTING MONTH NUMBER OF DOB AND NOW

Formula for Date
Text(ThisItem.'Date of Birth',"dd-mmm-yyyy")
Is as simple as changing the format to "dd/mm/yyyy"??