Notifications
Clear all
Topic starter
I'm wanting to have an action button that pulls in previous items that were check marked on the last visit. I did some searching and it looks like I need to have all the variables assigned to an OBS term. I believe I have that part working but I'm not sure what I need to do to re-populate the previous boxes and chart note.
Any suggestions or assistance is appreciated.
Posted : June 7, 2017 9:05 am
I think what you would need is a function that looks similar to this:
fn LoadPreviousValues() {
OBSNOW('OBSTERM') = OBSPREV('OBSTERM')
OBSNOW('OBSTERM2') = OBSPREV('OBSTERM2')
}
The buttons action would look like this: {LoadPreviousValues()}
Posted : June 8, 2017 1:39 am