从VB Lightswitch中的计算字段中删除小数位

时间:2012-10-04 22:27:42

标签: visual-studio-lightswitch

我有以下表格;

ID   Integer
CTN length   Decimal

CTN width    Decimal

CTN height   Decimal

Room width   Decimal

Room Length  Decimal

Room Height  Decimal

CTNs Width   Decimal    Computed field = Room Width / CTN width

例如,计算字段的结果是12.80

我想从结果中删除小数位,因此结果只有12而没有任何分数

有谁知道如何在VB灯开关中做到这一点?

1 个答案:

答案 0 :(得分:1)

如果你想让值保持小数,只是小数点后面没有小数,你可以使用:

Int(Computed field = Room Width / CTN width)

如果您还希望将值转换为整数:

Cint(Int(Computed field = Room Width / CTN width))

这些链接提供了更多详细信息:

Conversion.Int Method

Type Conversion Functions (Visual Basic)