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.
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.