reduce number of decimals appearing for calculated variable
In my responses.xls file all cells are formatted to show two numbers after the decimal. However, when a calculated variable is shown to participants during the experiment (i.e. how much they earned), there are 6 numbers following the decimal. How can I fix this?
rounding calculated responses
Just an update that you can do this using a few different Excel functions.
TRUNC simply cuts the number down
ROUND rounds the number to the amount of decimals (or an integer) that you specify
MROUND rounds the number to a multiple that you specify
For instance, I want a money amount returned in .50 increments so I use the formula: =MROUND(cell,.5)