I'm working on a simple outside lab form. That just has a few edit fields where providers can add a result from an outside lab (ACL, Quest...) I know how to get the result to push to the flowsheet but how can I get the date of the actual test to push to the flowsheet?
Format is OBSNOW("OBSTERM",date) if you want to set the date. So for an HGBA1c
OBSNOW("HGBA1C","6","11/15/2013")
that will put it a value of 6 for the HGBA1c in the flowsheet for November 15th.
I have a date field and I want whatever date is chosen to push to the flowsheet to the same obsterm as the result. Kinda like the commit to flowheet button works.
Here is one i use to push a information to the colonoscopy obsterm
OBSNOW("COLONOSCOPY",DOCUMENT.COLONOSCOPY,DOCUMENT.COLONDATE)
red is the information about the colonoscopy and the purple is the date field for the colonoscopy
Thank You!! That worked!!