Hello,
I'm trying to round my data down to the first decimal. My data looks like the below:
| User | Value | Desired Result |
| 1 | 1.23 | 1.2 |
| 2 | 1.25 | 1.2 |
| 3 | 1.27 | 1.2 |
I've tried using the floor function, but that rounds to the nearest integer. The round function also does not give me my desired result as it round based on 0.5.
Thanks!
Julian