I have three formulas:
{@rx1}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx1"
then
rx1;
{@rx2}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx2"
then
rx2;
{@rx3}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx3"
then
rx3;
Why is it that the first formula will pull up the correct information but the other formulas pull up nothing. If I make it a global variable, the data is very incorrect and pulls from previous records. What am I doing wrong? Thanks
{@rx1}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx1"
then
rx1;
{@rx2}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx2"
then
rx2;
{@rx3}
local stringvar rx1 := {MRRV99.LAB_RESULT};
If {MRRV99.LAB_NAME} = "Long Term Rx3"
then
rx3;
Why is it that the first formula will pull up the correct information but the other formulas pull up nothing. If I make it a global variable, the data is very incorrect and pulls from previous records. What am I doing wrong? Thanks