Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on April 26, 2023 5:00AM
Likes: 0
Replies: 1
I have an output like 1567.88 and I just want 1567
I tried using the round after round its giving 1568.
Any solution on this?
Hi,
Try using function FLOOR()
This will returns the largest integer value which is less than or equal to the value used as a parameter.
For example: FLOOR(79.9) will give 79
Thanks