Hello!
I see this in the documentation for setting a decimal
but I can't figure out how to wrap it around my ifThen statements that are currently giving me 12 places: where testPcd=90.804597701149 when the drop down (ESI Post, PSI Post, PSA Post....) is selected
At the end of the list (there are actually 8 options in the drop down that can affect the calculation, I am showing just 2 above) and also tried
By themselves, the equations work great (once I figured out I needed to use the FLOAT type!)... Just need to limit the decimals. I know it's something very basic I am not aware of, thanks in advance
I see this in the documentation for setting a decimal
but I can't figure out how to wrap it around my ifThen statements that are currently giving me 12 places: where testPcd=90.804597701149 when the drop down (ESI Post, PSI Post, PSA Post....) is selected
ifThen(testType == 'ESI Post', testPcd = (testScored/87)*100
);
ifThen(testType == 'PSI Post', testPcd = (testScored/82)*100
);
);
ifThen(testType == 'PSI Post', testPcd = (testScored/82)*100
);
At the end of the list (there are actually 8 options in the drop down that can affect the calculation, I am showing just 2 above) and also tried
By themselves, the equations work great (once I figured out I needed to use the FLOAT type!)... Just need to limit the decimals. I know it's something very basic I am not aware of, thanks in advance
Comment