Excel - RS field split from MS List

Scotster

Board Regular
Joined
May 29, 2017
Messages
66
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
I have a list setup in Sharepoint that holds links to various resources. In MS Lists itself, everything appears fine. Each record has a title and a URL option, each being limited to 255 characters.

When viewing through ADODB in Excel the record comes through truncated with the maximum characters being 255 combined total for the title & url. This means that I cannot display the full title when the combination exceeds this total.

Is there a way of splitting the data during the pull via ADODB?

The pull or the record looks like this
Code:
rs.Fields("Available Links")

And the output is
Code:
Title#http://www.websiteorfilelink.com#

I was wondering if there was an extension that I could use to pull them separately, as an example
Code:
rs.Fields("Available Links").title
rs.Fields("Available Links").url

If I access the list using "Get Data" in Excel it all pulls through fine, but I want to be able to upload the information as well, without hitting the 255 limit on upload.

Many thanks
 
you can make your own class for this.
Or you can split by #:
VBA Code:
    av = Split(rs.Fields("Available Links"), "#")
    avTitle = av(0)
    avLink = av(1)
 
Upvote 0

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