Hi.
I have the following formula:
--------------------------------------------------
numberVar validityDivisor := 4;
Global numberVar validityAmount := {schoolInfo.TotalPopulation}/validityDivisor;
Global numberVar responseTotal;
"Since you reported your population to be " + ToText({schoolInfo.TotalPopulation}) + " you needed " + ToText(validityAmount) + " surveys to have a valid sample." +
" Therefore, the data in this report is: " + Chr (13) + Chr (13)
if validityAmount <= responseTotal then
"YES, Data are Valid (see box below - Column A for explanation)"
else
"NO, Data are Not Valid (see box below - Column B for explanation)"
--------------------------------------------------------
Everything is working correctly EXCEPT I'd like to have the text output from the If-then-else statement printed in BOLD. Right now it's coming out like all the other text on the page.
I'm not sure what to do? Any help would be much appreciated.
Thanks.
--Scott
I have the following formula:
--------------------------------------------------
numberVar validityDivisor := 4;
Global numberVar validityAmount := {schoolInfo.TotalPopulation}/validityDivisor;
Global numberVar responseTotal;
"Since you reported your population to be " + ToText({schoolInfo.TotalPopulation}) + " you needed " + ToText(validityAmount) + " surveys to have a valid sample." +
" Therefore, the data in this report is: " + Chr (13) + Chr (13)
if validityAmount <= responseTotal then
"YES, Data are Valid (see box below - Column A for explanation)"
else
"NO, Data are Not Valid (see box below - Column B for explanation)"
--------------------------------------------------------
Everything is working correctly EXCEPT I'd like to have the text output from the If-then-else statement printed in BOLD. Right now it's coming out like all the other text on the page.
I'm not sure what to do? Any help would be much appreciated.
Thanks.
--Scott