SuperComputing
IS-IT--Management
Hello all, thanks again for all the help so far.
I have a table with 9 columns, I need to pull 4 columns and split up a 5th into peices. This is what I have so far and it is working:
Now, the 5th cell, FILLER1, is a comment(text) cell that I would like to use to store and retreive csv text data. I'm not allowed to simply add new columns.
When I try the following:
(the last line is an input box that shows the current data and allows it to be changed)
I get
Error Type:
Response object, ASP 0185 (0x8002000E)
A default property was not found for the object.
Is this because I am connecting twice? Is there an easier way to do this?
I would like to have the data in the cell to be something like this:
1A01A, 1D14C, 1F07B, 1G02E
All will be 5 characters and can either be comma separated or space separated, and be able to pull the parts independently:
SELECT LEFT(FILLER1, 5)...
SELECT LEFT(FILLER1, ??? 8 - 12 ???) etc...
Thanks in advance for any suggestions!
I have a table with 9 columns, I need to pull 4 columns and split up a 5th into peices. This is what I have so far and it is working:
Code:
Set con = Server.CreateObject("ADODB.Connection")
con.open "DSN=FTInventory"
strQuery1 = "SELECT Barcode, ItemNumber, ColorNumber, SizeNumber, FILLER1 FROM Barcode WHERE Barcode = '" & Replace(upc, "'", "''") & "' "
Set rsBarcodeData1 = con.Execute(strQuery1)
Now, the 5th cell, FILLER1, is a comment(text) cell that I would like to use to store and retreive csv text data. I'm not allowed to simply add new columns.
When I try the following:
Code:
locQuery1 = "SELECT LEFT (FILLER1, 5) FROM Barcode WHERE Barcode = '" & Replace(upc, "'", "''") & "' "
Set rsLoc1 = con.Execute(locQuery1)
.
.
.
<input name="rsLoc1" size="8" value="<%=rsLoc1%>">
I get
Error Type:
Response object, ASP 0185 (0x8002000E)
A default property was not found for the object.
Is this because I am connecting twice? Is there an easier way to do this?
I would like to have the data in the cell to be something like this:
1A01A, 1D14C, 1F07B, 1G02E
All will be 5 characters and can either be comma separated or space separated, and be able to pull the parts independently:
SELECT LEFT(FILLER1, 5)...
SELECT LEFT(FILLER1, ??? 8 - 12 ???) etc...
Thanks in advance for any suggestions!