Notifications
Clear all
Topic starter
DOCUMENT.CLINICALDATE returns the date plus time of the document. How can I pull just the date without the time? I want to use it in a visibility region like this:
(str(LAST_SIGNED_OBS_DATE("VAS PN CURR"))== str(DOCUMENT.CLINICALDATE))
The time included with the date is keeping this from working. Any ideas?
Posted : September 20, 2012 7:41 am
use SUB(DOCUMENT.CLINICALDATE, 1, 10)
Posted : September 20, 2012 10:17 pm