Do the users need to see the time when they respond to the prompt? If not, you can try the following:
modify the object to display the LOV w/out the timestamp; then perform a simple string Replace() on the report to replace the ‘;’ with the ‘[ To ]’.
If the user must be presented with the timestamp:
[i]1. if you’re going to use one prompt, I suppose you could manipulate the string to strip out the date (i.e. using Left(xx) to parse out the time from the ‘to’ date and then parse out the ‘from’ timestamp by finding the position of the ‘;’ and working backwards to strip out the timestamp, then finally replace the ‘;’ with ‘To’ . not an optimal solution, but i suppose it could be do-able.
present the user with 2 separate prompts (begin date, end date), then simply use formatdate() to format the date to your liking, and then concatenate the two.[/i]
Then I would think that my suggestion in the previous post under option #1 might work for you. Again, I know it would be a bit of a pain to have to parse out the dates, but i have seen it work in the past.