I have columns setup in sharepoint as a type "number". I set the "number of decimal places" to be 0.
However, when the column value is brought into Infopath, it comes in as a decimal number with several decimal percision 0's. ex 10 comes into sharepoint as 10.00000000.
This creates a compatibility issue with the access database the value is set to be stored to it as an integer. It also creates an issue when comparing that number to an "ID" field that does not come in with the percision.
Example
Table 1
Table1
ID = Number
title = text
Table 2
ID = Number
table1_id = Number (number of decimal points = 0)
title = text
value = Number (where value = 1500)
Infopath reads in the "Id's" as integers. However, it reads in table1_id as a decimal number.
Thus, when doing a cascading list, Table1.ID != table1_id ever. because 1 !=1.000000
Value shows up in infopath as 1500.000000000 but I want it to be 1500
Can something be done in sharepoint or infopath to make it come into infopath as a true integer?