What does "Cint" mean?

Hello!
Today im in Excel and Data Tables and all is going great. But i have a little question, what i have below is a method for an assign to calculate a loss invoice, but i dont really get what “Cint” means and what is the functionality of it.

TotalLoss = TotalLoss+Cint(row(“InvoiceValue”))

Thanks once again, Regards.

1 Like

Hi,

CInt is one of Data Conversion functions.
It provides function convert from some type (such as String,Double and so on) to Integer(Int32) type. For example, if original data is double, it will be rounded. If original data is string like “123”, it will be Int32 numeric value.
See the following document in details.

Regards,

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.