Sharepoint list input / size of Data type / Avoidance of truncate fields
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello Community,
Is there a way to select in the configuration of the tool Select all fields with a specific Type?
I try to find an easy way to select all "V_Wstring" I get from my SharePoint list (using the connector) and increase the size of all of them. (I want to be able to keep the order of my columns)
I have noticed that the SharePoint connector informs Alteryx of the length of the field, but this is not always accurate. (for instance if the fields is a multi-selection or if you allow the user to type something else that a drop down)
Thx!
Pierre
Solved! Go to Solution.
- Labels:
- Sharepoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @pvigneron
In order to achieve your results I can suggest two different tools: "Dynamic Select" Tool and "Field Info" Tool. Both tools can be really useful depending on you are trying to do. However, for you case scenario the Dynamic Select Tool is probably the better choice.
- Add Dynamic Select Tool following your SharePoint List Input Tool
- Filter on "V_WString"
- Add a Select Tool following this. From the Select Tool you have the option to increase the Field Size and re-order fields as needed using the Up/Down arrows.
- Continue Preparing your data
Manager, Customer Support
Alteryx, Inc.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Christian,
Thank you for your answer. I didn't know the tool dynamic select. I like it.
Nevertheless, this didn't solve my problem.
I am trying to play with the SharePoint Connector, but I really feel like this connector in instable with the version of Alteryx I'm using. Alteryx keeps crashing and I cannot industrialize my flow/my tests.
I will try with the 2018 version when my IT support will push the latest version.
I will re-open the discussion if I still have an issue.
Thanks.
Pierre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I use the "Run Command" tool to call the xls and run a "refresh all".
I feel like this is much faster and a lot more stable than the Sharepoint connector.
[cid:image002.jpg@01D4962F.256D5AE0]
[cid:image004.jpg@01D4962F.256D5AE0]
My run.bat file:
set vbs=".\updatefile.vbs"
cscript %vbs% %1
My argument: my xlsx file
updatefile Vbs File:
Dim args, objExcel
Set args = WScript.Arguments
Set objExcel = CreateObject("Excel.Application")
objExcel.Workbooks.Open args(0)
objExcel.Visible = True
objExcel.ActiveWorkbook.RefreshAll
objExcel.ActiveWorkbook.Save
objExcel.ActiveWorkbook.Close(0)
objExcel.Quit
Pierre
Classification: Internal
This message and any attachments (the "message") is intended solely for the addressees and is confidential. If you receive this message in error, please delete it and immediately notify the sender. Any use not in accord with its purpose, any dissemination or disclosure, either whole or partial, is prohibited except formal approval. The internet can not guarantee the integrity of this message. BNP PARIBAS (and its subsidiaries) shall (will) not therefore be liable for the message if modified. Please note that certain functions and services for BNP Paribas may be performed by BNP Paribas RCC, Inc.
Unless otherwise provided above, this message was sent by BNP Paribas, or one of its affiliates in Canada, having an office at 1981 McGill College Avenue, Montreal, QC, H3A 2W8, Canada. To the extent this message is being sent from or to Canada, you may unsubscribe from receiving commercial electronic messages by using this link: www.bnpparibas.ca/en/unsubscribe/. See www.bnpparibas.ca for more information on BNP Paribas, in Canada.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi there, I'm having a similar problem with the SharePoint List Input tool where it is truncating the field length on a field. I tried a Select tool following the input but that doesn't help because it's as if the data is already truncated as it comes through the input, so expanding the field size doesn't restore the truncated data.
The field on the originating SharePoint site is a choice field and the valid values exceed the character limit that is being imposed on the field as it comes into Alteryx, so I'm not sure why the connector is setting a different field length value?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Adding the missing screeshots
Macro
Setup of the Run Command
