Olá pessoal,
Preciso pegar o resultado de um valor inteiro e decimal e separá-los
Private Sub Report_Load()
Dim rst As DAO.Recordset
Dim strsql As String
strsql = "Select Count(*) As totalClientes From tbClientes WHERE setor = 1"
Set rst = CurrentDb.OpenRecordset(strsql)
'Aqui me retorna o total (6,294)
txtTotal.Value = rst.Fields("totalClientes") * 300 / 5100
Me.txtInteiro.Value =
Me.txtDecimal.Value =
rst.Close
Set rst = Nothing
End Sub
Preciso pegar o resultado de um valor inteiro e decimal e separá-los
Private Sub Report_Load()
Dim rst As DAO.Recordset
Dim strsql As String
strsql = "Select Count(*) As totalClientes From tbClientes WHERE setor = 1"
Set rst = CurrentDb.OpenRecordset(strsql)
'Aqui me retorna o total (6,294)
txtTotal.Value = rst.Fields("totalClientes") * 300 / 5100
Me.txtInteiro.Value =
Me.txtDecimal.Value =
rst.Close
Set rst = Nothing
End Sub