Ok - so the problem is that the recordset that I have created is not filling, or entering any value into it, CAN ANYONE HELP as this is the very last part of my program.... Maybe its a problem reading the values that are selected, in my program, from the comboboxes... im not too sure.
here is the subsequent code ->
Dim strEuro As String
Dim VATQuerySet As DAO.Recordset
strEuro = "€"
strMonth = Me.MonthCombo
intYear = Me.YearCombo
strEmployee = Me.EmployeeCombo
Set VATQuerySet = CurrentDb.OpenRecordset("SELECT BillingMonths.[Total Excluding VAT] FROM SimsUpdate INNER JOIN BillingMonths ON SimsUpdate.GSM = BillingMonths.GSM WHERE BillingMonths.[Month] = ' & strMonth & ' AND BillingMonths.[Year] = '" & intYear & "' AND SimsUpdate.[Employee Name] = '" & strEmployee & "'")
Me.TotalExcludingVATTextbox.SetFocus
VATQuerySet.MoveFirst
Me.TotalExcludingVATTextbox.Text = strEuro + VATQuerySet.Fields
here is the subsequent code ->
Dim strEuro As String
Dim VATQuerySet As DAO.Recordset
strEuro = "€"
strMonth = Me.MonthCombo
intYear = Me.YearCombo
strEmployee = Me.EmployeeCombo
Set VATQuerySet = CurrentDb.OpenRecordset("SELECT BillingMonths.[Total Excluding VAT] FROM SimsUpdate INNER JOIN BillingMonths ON SimsUpdate.GSM = BillingMonths.GSM WHERE BillingMonths.[Month] = ' & strMonth & ' AND BillingMonths.[Year] = '" & intYear & "' AND SimsUpdate.[Employee Name] = '" & strEmployee & "'")
Me.TotalExcludingVATTextbox.SetFocus
VATQuerySet.MoveFirst
Me.TotalExcludingVATTextbox.Text = strEuro + VATQuerySet.Fields