Thank you in advance for any help. How do I add multiple conditions to \ifthenelse?
I want to be able to write:
\ifthenelse{varType equals 'HS' and metric equals 'KPI1'}
{do this}
\ifthenelse{varType does not equal 'HS' and metric equals 'KPI1'}
{do something else}
Specifically, I want to add MSL_POP$report == 'HS' to:
\ifthenelse{\Sexpr{MSL_POP$exception[MSL_POP$metric == 'KPI1']} == 99999 and \Sexpr{MSL_POP$report == 'HS'}}
{do something}
\ifthenelse{\Sexpr{MSL_POP$exception[MSL_POP$metric == 'KPI1']} == 99999 and \Sexpr{MSL_POP$report != 'HS'}}
{do something else}