I have a field [Bill Period] as short text. The data is provided to me as such, "11/07/22-12/07/22", which represents a start date and an end date.
I extracted the start day and formatted it as a date using the following expression. StartDate: CDate(Left([tblWegoWiseSpikes]![Bill Period],8))
It works perfectly until I try to sort. "Invalid use of Null", is returned.
I tried using just the Left() function, which sorts, but it sorts incorrectly, because it is not a date field.
Thank you
I extracted the start day and formatted it as a date using the following expression. StartDate: CDate(Left([tblWegoWiseSpikes]![Bill Period],8))
It works perfectly until I try to sort. "Invalid use of Null", is returned.
I tried using just the Left() function, which sorts, but it sorts incorrectly, because it is not a date field.
Thank you