I have created "Previous ALL" buttons that pull forward of course all the information from a grouping of ObsTerms ... but the problem I find is that if one obsterm was used 6 months ago and one was use 2 months ago that unfortunately brings up both ... which makes sense but I'm trying to figure a way to bring up only the MOST recent information ... IF THIS MAKES SENSE AT ALL
If you have an observation that you record with every office visit just use that with LASTOBSDATE() and require a match in order to add the previous observation. For example
if LASTOBSDATE(something you always use) == LASTOBSDATE(physical exam obs) then
OBSNOW(physical exam obs,OBPREV(physical exam obs))
else "" endif
Awesome I'll try it shortly ... Only thing is in the statement I don't understand the following OBSNOW(physical exam obs,OBPREV(physical exam obs))
It sets the current observation for a term equal to the most recently signed one, depending on which observation terms you use it might look something like
OBSNOW("GEN APPEAR",OBSPREV("GEN APPEAR"))
the first part will stop this from executing if the OBSPREV() is too old. Let me know if this doesn't make sense. you can email me directly if you want