Hello Make community! I’m excited to learn this tool, but I’m stuck on a scaling issue.
I’m receiving a webhook with this data structure:
json
[
{
"Navn": "Daniel Robertson",
"BusNr": "7551",
"VinduerRating": "2",
"WindowFile": "Image linkWindow",
"SæderRating": "2",
"SæderFil": "Image linkSæder",
"GulveRating": "1",
"GulveFil": "Image linkGulve"
// ... and so on
}
]
My Goal: When any rating is below 2, I want to automatically attach the corresponding image to a column in Monday.com.
The Challenge: I need to do this efficiently because there might be 150+ different questions/ratings to process.
Current Approach: Routing and selecting every variable indivually and manually. (see screenshot below), but this approach doesn’t scale well for 150+ questions since I’d need to create individual modules for each rating field.
Question: How can I iterate through the entire list, check each rating value, and attach the relevant image file when the rating is below 2? I’m looking for a scalable solution that can handle multiple rating fields without creating hundreds of individual modules.
Any suggestions or example for efficiently processing this type of conditional logic in Make would be greatly appreciated!
