Hope someone can help
i have the following code
PARAMETERS [Between [forms]![frmPreviewReports]![txtStartDate] And [forms]![frmPreviewReports]![txtEndDate]] DateTime;
TRANSFORM Count(qryClusterA.ClusterXfers) AS CountOfClusterXfers
SELECT qryClusterA.Interval, Count(qryClusterA.ClusterXfers)...
I am trying to write a module with the following code
If Name like '*119*' Then
CorrectName = "Macclesfield " & Name
elseif Name like '*118*' Then
CorrectName = "Stockport " & Name
End If
i need to run this code for about a 1000 different outcomes but the code is stopping and highlighting the...
Hope someone can help i have the following code that returns any data before a space in the name field
Left([Name],InStr([Name] & ' ',' ')-1)
i also have the following code that returns any data before a "-"
Left([Name],InStr([Name] & "_","_")-1)
i was wondering if it would be possible to...
Hope someone can help
I am trying to run the following delete query
SELECT tblAlternativeNetworkCallDetail.*, CDate(Left([StartDateTime],10)) AS Expr1
FROM tblAlternativeNetworkCallDetail INNER JOIN tblMidTermAnsPoints ON tblAlternativeNetworkCallDetail.TAD = tblMidTermAnsPoints.TAD
WHERE...
Remou
i have sorted ut the issue above and it sorts fine however i am now getting a run time error saying record to large
and it selects
rst!Field1 = strField1
do you know what could be causing this?
I have the follwing code to fill in any blank records i have in field1
Set db = CurrentDb()
Set rst = db.openrecordset("tblInitialAgentCcsData", dbOpenDynaset)
rst.MoveFirst
Do While Not rst.EOF
strField1 = rst!Field1
rst.MoveNext
Do While IsNull(rst!Field1)
rst.edit...
I hope someone can help, i have used the following code from thread 705-892728
Dim ImportFile
ImportFile = Dir("C:\Program Files\Alcatel\A4400 Call Center Supervisor\Excel\DAILY\Agents\18_09_06\*")
Do While ImportFile <> ""
DoCmd.TransferSpreadsheet acImport, 8, "tblInitialAgentCcsData"...
ProgramError thanks for your help i have looked at the Instr() function, would i have to inputt all the STd's for it to look for and thenm put a space or is there be a quicker way to do this?
thanks again
sorry to sound a bit thick but what do you mean by splitting the number down beacause of the issue of some std being 4 5 or even 6 numbers was why i thought about using a wildcard
I have a list of customer telephone numbers (field Name "CLINumber")in a table what i need to be able td do is to confirm form the inital std code what area the call should have been deliverd to. so i want to set up a module to check each record for example if the customer number is 01132151239...
i hope some one can help i am pulling my hair out with this one
I have the following code
DoCmd.TransferSpreadsheet acImport, 8, "tblInitialQuoteData", "H:\Retail Network\Public\0800Plan\Ops Team\Non Motor & Internet\NSU man tracking V6.XLS", NO, QuoteDatabyName
when i run the code i get run...
I hope someone can help, i have the following code on the open event of a form to find a specific record
Me.Recordset.MoveFirst
Do Until Me.Property_Ref = Forms!frmPropertyBasicDetails!PropertyRef Or Me.Recordset.EOF
Me.Recordset.MoveNext
Loop
thios works fine if there is a...
Golom thank you for your help i was wondering if it would be possible to put a record count after the duplicate flag, so if there are 6 CLI records the same the duplicate flag would say duplicate1 for the first record all the way to duplicate6 then when there is a new duplicate CLI the count...
I have been sent a table that holds all our call details by day
i need to be a ble to check each record and if the next record in the table is the same then i need to update a field in my table [DuplicateFlag] with the word "duplicate" i have come up with the following that i seems to work...
sorry my a example of the some of the data is
Date CLI Less60Flag Greater60Flag
01/03/06 01619231234 1
01/03/06 01619231234 1
01/03/06 01619234567 1
so for the above data i need to show that we had a...
I hope somebody can help, i have a table that has a number of fields but for this query i only need 4 fields, they are
Date CLI Less60Flag Greater60Flag
The problem i have is the table contains the number that a customer contacted us on (CLI), what i need to do is count the total number...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.