Is there a way to show all past MRI's (or other information) and be able to pick which MRI was reviewed on this visit, and translate only that information to the chart. I am very new to VFE and am not sure how to do this.
Load all MRIs into a listbox so you can select which one you want to translate.
Thanks for the response, but can you elaborate on how to load the MRI's into a list box?
Create a listbox with a dynamic list of values. Use LIST_OBS to get the comma delimited list of obs term values.
Thank you, I got it to work.
jjordet,
That worked, however it has created another issue in that some of the data that is stored in the MRI obs term has commas in it. This causes it to split up that information into two or more choices in the list box when it should be just one. Is there anything I can do to correct this, or check for those commas and ignoe them, or remove them, or replace them with a another character? This is the mel expression I am using:
{LIST_OBS('MRI','Signed','coma',"value")}
You will have to use the 'delimited' option for LIST_OBS and loop through each value using REPLACESTR to replace/remove the commas and then concatenate the values together with a comma.