I am opening a recordset and then running the code below. This code runs fine apart from the fact that it is rounding up and figures that have decimal places. ie 2.6 becomes 3 in the table and cannot be changed back to 2.6. The only way is too set the properties of the table field to text which is not what I want to do as I need the fields to be numbers not text.
Any help would be much appreciated.
With tbl
.AddNew
!BonusDateRatesApplied = Me.R_BonusDate
!AnnualSApc = Me.R_CurrentAnnualRate
!AnnualRBApc = Me.R_CurrentReversionaryRate
!TBonSA = Me.TBSA
!TBonRBA = Me.TBRBA
!EMVWithAppliedRates = Me.txtTempEMV
!ToBePrinted = Me.txtfrmHeader
.Update
.Bookmark = .LastModified
End With
Thanks
Steve
Any help would be much appreciated.
With tbl
.AddNew
!BonusDateRatesApplied = Me.R_BonusDate
!AnnualSApc = Me.R_CurrentAnnualRate
!AnnualRBApc = Me.R_CurrentReversionaryRate
!TBonSA = Me.TBSA
!TBonRBA = Me.TBRBA
!EMVWithAppliedRates = Me.txtTempEMV
!ToBePrinted = Me.txtfrmHeader
.Update
.Bookmark = .LastModified
End With
Thanks
Steve