VB Issue pulling data with date specific

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
769
Office Version
  1. 365
Platform
  1. Windows
Good afternoon

I can pull data from access into a tab on excel currently without using a date specific period. But I now need to add the date part in and I seem to be pulling no data through and I am unsure why.
The only issue I can see is that the "table1.[Survey Completion Date & Time]" date format is "General Date - dd/mm/yyyy hh:mm:ss" and I have chaned the date1 type to "DD/MM/YYYY HH:MM:SS" and it doesnt pull data through. If I remove the date part I get data dropping into my A10 area.

Any ideas as I feel as though I am going round in circles.

Code:
NType = ThisWorkbook.Sheets("Loader").Range("B10").Value
date1 = Format(ThisWorkbook.Sheets("sheet1").Range("C5").Value, "DD/MM/YYYY")
date2 = Format(ThisWorkbook.Sheets("sheet1").Range("C6").Value, "DD/MM/YYYY")

If NType = "NPS" Then
    mysqlst = "SELECT table1.CaseID, table1.[Case Status], " & _
    "table1.[Assigned To], table1.[Date Assigned],  " & _
    "table1[Call Date 1] FROM table1 WHERE (table1.NPS='" & NType & "') And ((table1.[Survey Completion Date & Time]) between " & Chr(35) & date1 & Chr(35) & " AND " & Chr(35) & date2 & Chr(35) & ");"
End If

Set cn = New ADODB.Connection
With cn
 .ConnectionString = con1
 .Open
End With

Set rs = New ADODB.Recordset
rs.Open mysqlst, cn, adOpenDynamic, adLockPessimistic
    ThisWorkbook.Sheets("Sheet1").Range("A10").CopyFromRecordset rs
rs.Close
Set rs = Nothing
cn.Close
Set cn = Nothing

thanks in advance
Gavin
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi Gavin can you add a query in Access and then import it via vba, might be an easier solution.
 
Upvote 0
Hi Gavin can you add a query in Access and then import it via vba, might be an easier solution.
I was thinking this , but I have created a separate date field and would like to pick up the date range or if its blank.
I have used the [Date Assigned] = is blank is there an easier way?

Code:
If NType = "NPS" Then
    mysqlst = "SELECT CustomerSurveyInsightAllTable.CaseID, CustomerSurveyInsightAllTable.[Case Status], " & _
    "Table1.[Assigned To], Table1.[Date Assigned],  " & _
    "Table1.[Call Date 1] FROM Table1 WHERE (Table1.NPS='" & NType & "') And ((Table1.[Date Assigned]) between " & Chr(35) & date1 & Chr(35) & " AND " & Chr(35) & date2 & Chr(35) & " ) Or (Table1.[Date Assigned] = """")) ;"
End If
 
Upvote 0
@Trevor G I have worked some code and instead of using the date I have managed to use days old of query but I have an issue now on the final "and" request.
If I remove the "and (Table1.[Case Status]" clause the code runs, but I currently an error "No value given for one or more required parameters".

Can you point me in the right direction as the "Status" is being recognised?

Code:
Dim cn As ADODB.Connection, rs As ADODB.Recordset
Dim mysqlst, mysearch1 As String

Status = ThisWorkbook.Sheets("Loader").Range("B15").Value
mysearch1 = ThisWorkbook.Sheets("Loader").Range("B10").Value

If ThisWorkbook.Sheets("Loader").Range("B10").Value = "NPS" Then
    mysqlst = "SELECT Table1.CaseID, Table1.[Case Status], Table1.[Assigned To], Table1.[Date Assigned], " & _
    "Table1.[Root Cause], Table1.Outcome, Table1.[Outcome 2], Table1.[Survey Completion Date & Time], " & _
    "Table1.[Date & Time of Call], Table1.NPS, Table1.[Call Date 1],  " & _
    "Table1.[Call Date 2], Table1.[CallID], Table1.[Unique Staff Identifier], Table1.Sort_Name, " & _
    "Table1.[Team Leader], Table1.Lead, Table1.[Brand Score], Table1, " & _
    "Table1.[Brand Verbatim], Table1.[Agent Score], Table1.[Agent], Table1.[Agent Verbatim]," & _
    "Table1.[Parent Organisation Name], Table1.[Open to discussion], Table1.[Contact Method], Table1.[Outstanding Issues]," & _
    "Table1.[Email Address], Table1.[Contact Phone Number], Table1.[ALERT:], Table1.[Contact Attempt]," & _
    "Table1.[Contact Type], Table1.[CRM Updated], Table1.[Attribute], Table1.[TOFU]," & _
    "Table1.[Call Findings], Table1.[Conclusion] FROM Table1 WHERE (Table1.NPS='" & mysearch1 & "') and ((Table1.Age<= 21) and (Table1.[Case Status]<> " & Status & ")) ;"
End If

Set cn = New ADODB.Connection
With cn
 .ConnectionString = con1
 .Open
End With

Set rs = New ADODB.Recordset
rs.Open mysqlst, cn, adOpenDynamic, adLockPessimistic
    ThisWorkbook.Sheets("CurrentInFile").Range("B9").CopyFromRecordset rs
rs.Close
Set rs = Nothing
cn.Close
Set cn = Nothing

thanks in advance
 
Upvote 0
we don't have any example of your database or example of the table data so difficult to work on a solution for you.

Can you show some example data and adjust anything if its sensitive info.

Have you tried a docmd.transferspreadsheet method?

I would still suggest creating a query and then add your date parameters and look to use that as the import to excel.
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,205
Members
452,618
Latest member
Tam84

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top