Wonder if I could make a handout that would list all values for BP with the date for the past year.
Any ideas?
You will probably end up doing LIST_OBS with the "delimited" parameter and then you will have to loop through the results and get the ones that are within the date range you want.
Thanks David, could you give an example.
I was thinking about writing something to do this also. Imagine something along the likes of the following example I did for a med listing:
{global medslisting = getfield(MEDS_AFTER('list'),"\r","")
global medsize = size(medslisting)
patmeds = ""
medsconf = " [ ] Correct as listed [ ] Stopped [ ] Changed:"
for count=1, count < medsize, count = count + 1
do
patmeds = patmeds + medslisting[count] + str(HRET) + medsconf + str(HRET)
endfor
patmeds
}