I know I am missing something but I am trying to get ALL of the values from the flowsheet that is set up to "HGBA1C".
This is the quick text I have set up: HGBA1C: {GET_FLOWSHEET_VALUES("HGBA1C")}
This is what displays in the chart: HGBA1C: No flowsheet view found at path: HGBA1C
This is the one I use
Previous A1C values:
{LIST_OBS('HGBA1C','Signed','list',"valuedate")}
Worked perfectly! Thank you!
You're welcome.
Just to clarify a little bit, the GET_FLOWSHEET_VALUES() is looking for the name (and path) of a flowsheet view and will list all of the observations associated with that view. To view just a single observation you would use one of the *OBS* functions, like BrianAPHN already mentioned, OBSNOW(), OBSPREV(), and OBSANY() are also options if you are looking for a single value or LIST_OBS() for multiple values .
Yes, I have those. I was missing the List option. Thank you for the feedback!