I am creating a report which will return numeric results for materials analyzed. The problem is that significant figures need to be preserved so, each result has a separate entry for the number of significant figures since access chops off trailing zeros in numeric fields (as far as I know). This is fine for storing data but, makes for a very messy report.
Can I run some sort of function in the report which will compare the result with the number of significant figures and then add a decimal zero if there is a difference?
The logic could be something like this:
If number of characters in result < value of significant figure
then add a decimal zero to result
else return result
Unfortunately, I am new to Access and not sure if this can be done, thanks very much for any help. Even knowing if this is possible and how best to approach it would be a great help.
Can I run some sort of function in the report which will compare the result with the number of significant figures and then add a decimal zero if there is a difference?
The logic could be something like this:
If number of characters in result < value of significant figure
then add a decimal zero to result
else return result
Unfortunately, I am new to Access and not sure if this can be done, thanks very much for any help. Even knowing if this is possible and how best to approach it would be a great help.