I have a form I made through VFE. It is a complete exam form. A provider wants a button named "insert previous" and have that insert the information from the previous office visit. Is this possible??
Thank you in advance for your time.
If you have obs terms for your fields, what you would have the button (RUNPROCESS) do is
{OBSNOW("OBSTERMHERE",LAST_SIGNED_OBS_VALUE("OBSTERMHERE"))}
for each obs term you wanted to set (you could put all of them inside one set of curly braces. This would make each obs term the value of the last signed obs term. Only problem you would have is that this doesn't guarantee that all the previous obs terms would have come from the same previous visit. Only that each one is the most recent of that obs term.
You can accomplish the same this making the button a SETVALUES and choosing <previous observation> for the set value.