Comments on: How to migrate data from a CSV file to SharePoint using PowerShell https://practical365.com/csv-file-to-sharepoint/ Practical Office 365 News, Tips, and Tutorials Mon, 27 Feb 2023 14:25:45 +0000 hourly 1 https://wordpress.org/?v=6.3.2 By: Neil https://practical365.com/csv-file-to-sharepoint/#comment-242446 Mon, 29 Aug 2022 12:51:16 +0000 https://www.practical365.com/?p=42641#comment-242446 Hi

Would this work for Sharepoint on premises as well

]]>
By: JOSE Zaldicar https://practical365.com/csv-file-to-sharepoint/#comment-236056 Sun, 25 Jul 2021 01:31:29 +0000 https://www.practical365.com/?p=42641#comment-236056 In reply to Priya.

Any progress on this? Going through the same issue.

]]>
By: JOSE Zaldicar https://practical365.com/csv-file-to-sharepoint/#comment-236055 Sun, 25 Jul 2021 01:30:54 +0000 https://www.practical365.com/?p=42641#comment-236055 Thanks for the detailed description. I am looking for how we include lookup values. Still looking for a good example that I can follow. I have over 10000 items to go through.

]]>
By: rohit https://practical365.com/csv-file-to-sharepoint/#comment-235770 Tue, 29 Jun 2021 17:09:30 +0000 https://www.practical365.com/?p=42641#comment-235770 Will this pnp work for more than 5000 data in a excel?

]]>
By: dhananjay https://practical365.com/csv-file-to-sharepoint/#comment-233298 Thu, 04 Feb 2021 22:06:16 +0000 https://www.practical365.com/?p=42641#comment-233298 In reply to Simon.

I am also having same error for blank values in csv any idea?

]]>
By: Darshan https://practical365.com/csv-file-to-sharepoint/#comment-232749 Thu, 24 Dec 2020 08:25:24 +0000 https://www.practical365.com/?p=42641#comment-232749 In reply to Heather Drattlo.

Hi,
I have few rows where some of the columns are blank and it should be like that.
My columns in the list are as well not of required type. But still the item does not get created due to a single blank column in my row. What can be a solution for this.
The error comes that Item cannot be created if its value is null.

]]>
By: Simon https://practical365.com/csv-file-to-sharepoint/#comment-231865 Fri, 30 Oct 2020 11:06:06 +0000 https://www.practical365.com/?p=42641#comment-231865 In reply to murali.

I had this error. I formatted the .csv date columns to represent the US standard datetime as opposed to UK standard. Which worked for me.

]]>
By: Heather Drattlo https://practical365.com/csv-file-to-sharepoint/#comment-230188 Thu, 02 Jul 2020 21:26:56 +0000 https://www.practical365.com/?p=42641#comment-230188 In reply to Christian Ebert.

I know this is way late, however it may help someone else down the line. If you are importing empty rows, check your csv file and make sure there aren’t a bunch of empty rows being added by Excel. To do this, simply open your csv with a text editor like notepad. Scroll to the bottom of the document and see if there are rows of just commas with no data. If there is, just delete those rows and try again. If you want to do it programatically, pipe the following code to your import-csv line:
| Where-Object { $_.PSObject.Properties.Value -ne ” }

]]>
By: Priya https://practical365.com/csv-file-to-sharepoint/#comment-229120 Sun, 05 Apr 2020 09:35:49 +0000 https://www.practical365.com/?p=42641#comment-229120 In reply to Jesper Enavall.

I am also really after importing records with lookup columns, any luck with it?

]]>
By: Jesper Enavall https://practical365.com/csv-file-to-sharepoint/#comment-229014 Mon, 16 Mar 2020 12:47:41 +0000 https://www.practical365.com/?p=42641#comment-229014 Hi,

I have many Lookup-columns that are collected from another list and it seems not to work even if the value is exactly the same. Do I need to do something more logical in the script to solve that? For example pick up the value from the lookup-list and enter it to the current list to import to?

]]>