Skip to main content
Question

FeatureWriter only writes the first feature instead of all of them

  • June 7, 2019
  • 2 replies
  • 29 views

I have a FeatureWriter connected to a Google Sheet. That FeatureWriter's input are files that were just uploaded to a Google Drive (through a GoogleDriveConnector). I want the FeatureWriter to update the Google Sheet with each of the uploaded file's informations but right now only the informations about the first uploaded file appear. How can I make it so all the files are going to be written at some point?

 

I know Google Sheet doesn't support insert but I have a script that deals with that part, I just need the information of the files to be written in the Sheet at some point.

 

Thank you

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

chrisatsafe
Contributor
Forum|alt.badge.img+2
  • Contributor
  • June 10, 2019

Hi @nademmy,

Would you be able to share the workspace or screenshots of the workspace so we can get a better understanding of what is currently happening?

From what I understand, you want to edit the file that you just uploaded to GoogleDrive. If that is the case, you will likely need to use a FeatureReader to read that data back in, process it (i.e. update file information), and then use a Writer or FeatureWriter to write the changes.


  • Author
  • June 11, 2019

Hi @nademmy,

Would you be able to share the workspace or screenshots of the workspace so we can get a better understanding of what is currently happening?

From what I understand, you want to edit the file that you just uploaded to GoogleDrive. If that is the case, you will likely need to use a FeatureReader to read that data back in, process it (i.e. update file information), and then use a Writer or FeatureWriter to write the changes.

Thank you for your comment, but I was able to work around the problem!