Forum Discussion
Need more than 2 decimal places.
Storyline 360 rounds numbers to 2 decimal places. This makes it very difficult, without resorting to JavaScript, to allow students to answer many basic math problems. I don't quite understand why this restriction exists, but it seriously needs to be addressed.
Does anyone have a workaround for this?
2 Replies
- MariaCSStaff
Hi, Andrew.
Thank you for submitting a feature request! Here's additional information on how we manage feature requests.
In the meantime, I am hopeful some of our community members can offer you workarounds that don't involve Javascript.
- NicholasCWNgCommunity Member
I'm very late to this topic, but I found this thread when looking for my own issues where I wanted users to input a value that had 3 decimal places and check if they had input it correctly. My triggers would keep rounding the value to 2 decimal places and report the 3 decimal input as an incorrect answer rather than correct answer.
My solution to this is to create additional variables to multiply the input by 10 so that the expected answer becomes a 2 decimal place number, which can then be compared to the correct answer which I also multiplied by 10 within the triggers to check if the input was correct.