I’m trying to create a scenario that does the following:
Goal:
Watch for new rows in a Google Sheet and automatically write them to a Google Doc, maintaining a specific format for each column’s data while being flexible for future column additions.
Desired Output Format in Google Doc:
For each column in the new row:
Column Header
Cell Value
Key Requirements:
- Must automatically detect and process ALL columns in the sheet
- Should handle any new columns added to the sheet in the future without scenario modification
- Each field should maintain the HTML formatting ( for headers,
for values)
Current Setup:
- Google Sheets > Watch Rows (configured to watch my sheet)
- Need help with the next steps to process the data dynamically
What’s the best way to:
- Collect all column headers dynamically?
- Match each header with its corresponding value?
- Format and write to Google Doc with the specified HTML structure?
Any help with the correct modules and mappings would be greatly appreciated!