We will use it in the clinical visit summary handout so it is always done in an open update. We are getting closer though because now it just says VOID when I try it with LIST_OBS.
I would try 'pencil' instead of 'update', thats probably what you want. It is probably saying void because there is no data to try to place into an array with the term 'update'
You were right, that did work. I didn't think to check before because it worked without the array. Thank you both so much
Pencil was showing old signed values too so I had to change back to update because they only wanted values for the current update. It is working now for some reason but it only shows the first obs value when sometimes there are 2 or 3 in the update. Do you have any ideas for this?
might be a bug with LIST_OBS and using 'update'...thinks there's only going to be one new value for the obs term in an update.
We use {LIST_OBS('FOLLOW-UP','update','list','valuedate')} now and this one works for some reason, it shows them all but also with the time which looks odd when patients look at it. I'm not sure why it doesn't with the function though.
for i = 1, i < size(obsarray1), i=i+1 do
should be
for i = 1, i <= size(obsarray1), i=i+1 do
Perfect, thanks