INTEGRAL PART OF A NUMBER

Hello again Folks, does anyone know what is the expression with which the integer part of a number can be obtained in appsheet?

In the same way, how to get the decimal part

I thank you in advance.

Solved Solved
0 4 89
2 ACCEPTED SOLUTIONS

Entero:

 

FLOOR([Nรบmero])

 

Decimal:

 

[Nรบmero]-FLOOR([Nรบmero])

 

 

View solution in original post

Take a look at the following article in the help documentation. Once you have the integer part you can subtract it from the original number to get the decimal part.

 

appsheet_rebrand_logo.pngFLOOR()
 Nearest lower integer

 

View solution in original post

4 REPLIES 4

Entero:

 

FLOOR([Nรบmero])

 

Decimal:

 

[Nรบmero]-FLOOR([Nรบmero])

 

 

Gracias Oscar! Saudos! 

Take a look at the following article in the help documentation. Once you have the integer part you can subtract it from the original number to get the decimal part.

 

appsheet_rebrand_logo.pngFLOOR()
 Nearest lower integer

 

Gracias @graham_howe 

Top Labels in this Space