Andrzejek, Thank You for your input
strCSV = Left(strCSV, Len(strCSV) - 1)
Removes all commas, defeating the purpose. I only need the last comma to be removed.
With CurrentDb.OpenRecordset("tbl_TEMP_ARCHIVE_ASSETS")
'Dim x As Integer
For x = 0 To .Fields.Count - 1
If x <...
Good Afternoon
The following code creates a .csv file.
The output looks something like this
Peter, Pan, 20, Male,
Mary, Pan, 20, Female,
John, Doe, 40, Male,
The problem is the last comma on each row. It should no be there. Or I need to delete it.
I can't figure out how to remove the last...
Yes, I understand the Excel part but I am not using Excel. I am using Access 2010. I am not trying to open the csv. I am trying to make run the process in the background. I think I figured it out. Here it is what I was able to achieve.
Sub Test()
'On Error Resume Next
Dim objFSO, dataArray...
Hello. I am trying to figure out why the code below does not produce a new row of data. For example the old.csv shows
A B C D E
1 JOE DOE MALE UNF
2 MOE DOE MALE UF
3 FOE DOE FEMALE SPACE_HERE
4 JOE DOE SPACE_HERE CAL
But the output to the new.csv looks like...
Records would be guaranteed. There could be any amount of assets but if a column for grouping is required, the same amount of fields would be available.
GrpNum Field1 Field2
3 ITEM 1
3 ASSET 12345
3 MODEL 1234ABC
2 ITEM 2
2...
Good Afternoon
I need some help transposing columns to rows based on ITEM number. I am using SQL but can't seem to figure it out.
My qry_Table
Field1 Field2
ITEM 1
ASSET 12345
MODEL 1234ABC
ITEM 2
ASSET 12346
MODEL A1B2C3
ITEM 3
ASSET 12347
MODEL 1ABC456
My desired results
ITEM...
1 Joe Doe 1 Main St Downtown Building 2nd Floor Room 13
2 Bruce Wayne 9 Batcave Rd Bat Cave Building 1st Floor Room 1
3 Bruce Lee 1 Karate Way Chinatown Building 3rd Floor Room 5
4 Jet Li 26_Karate_Way Chinatown_Building 4th Floor Room 6
The results would be
1 Joe Doe...
I have no idea why is breaking up the data on the numeric and special characters. May be the way I am opening the file??? but I am not sure. Thanks for the help.
Sub FBI_RA_BOOKING()
Dim hostSettleTimeout As Integer
Dim hostSettleTime As Integer
Dim osCurrentScreen As Screen
Dim osCurrentTerminal As Terminal
Dim returnValue As Integer
Dim hiddenTextEntry As String
hostSettleTimeout = 5000
hostSettleTime = 300
Set osCurrentTerminal =...
The plan
1 Access Database creates a csv file
2 Data is read by Reflections 2011 VBA code
3 Data is passed to the mainframe via Reflections 2011 VBA
The problem
1 Access Database creates the csv file (NO PROBLEM)
2 Data is read by Reflections 2011 VBA code (PROBLEM)
A) If leading numeric...
The plan
1 Access Database creates a csv file
2 Data is read by Reflections 2011 VBA code
3 Data is passed to the mainframe via Reflections 2011 VBA
The problem
1 Access Database creates the csv file (NO PROBLEM)
2 Data is read by Reflections 2011 VBA code (PROBLEM)
A) If leading numeric...
Here is my Module Code. Thanks
Sub BATCH_TRANS_OPT9_Loop()
Dim hostSettleTimeout As Integer
Dim hostSettleTime As Integer
Dim osCurrentScreen As Screen
Dim osCurrentTerminal As Terminal
Dim returnValue As Integer
Dim hiddenTextEntry As String
hostSettleTimeout = 5000
hostSettleTime = 300
Set...
I am using Reflections 11. The VBA code works but when it comes to pass the osCurrentScreen.SendKeys "Y", It does not pass the "Y" Key. Why is that? This only happens in my If Then Else statement.
Any help would be appreciated.
Thank You
If (Line22) = "Do you wish to continue? N" Then...
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.