I have a Start Date field and a End date field in one of my tables. I have a report that I created and I want to combine the two fields into one so that it reads as follows:
01/01/2010 to 12/31/2010
This is the expression I'm using:
The problem is, for those records with no data values the word "to" is showing up in the field and I want the field to remain blank if the field is empty.
01/01/2010 to 12/31/2010
This is the expression I'm using:
=[Previous Start Date] & " to " & +[PrevAssnEnd]
The problem is, for those records with no data values the word "to" is showing up in the field and I want the field to remain blank if the field is empty.
Comment