You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have an excel file with around 1000 rows and I just say that all rows are NOT read.
It now gives me ... 400 more items.
So my question is can I read all items in the excel file?
functiongetData(){returnspauth.getAuth(url,{username:username,password:password}).then(function(options){// Headers varheaders=options.headers;headers['Accept']='application/json;odata=verbose';// Pull the SharePoint list items returnrequestprom.get({url: url,headers: headers,json: true}).then(function(listresponse){varitems=listresponse.d.results;console.log(items);}})});});}
After some more research I found that I can only read the first 500 rows.
Don't know if the limitation is here or Office API and no idea how to get around it.
The text was updated successfully, but these errors were encountered:
We have an excel file with around 1000 rows and I just say that all rows are NOT read.
It now gives me ... 400 more items.
So my question is can I read all items in the excel file?
After some more research I found that I can only read the first 500 rows.
Don't know if the limitation is here or Office API and no idea how to get around it.
The text was updated successfully, but these errors were encountered: