What is your goal?
I want to build a lead qualification (lead scoring) scenario in Make where scores are calculated in Tools modules and then correctly written as plain text into Google Sheets and sent as readable text in a Telegram message.
What is the problem & what have you tried?
I have redesigned my scenario and now it contains multiple Routers and many Tools β Set variable modules used to calculate lead scoring values (budget, urgency, company type).
Scenario structure (simplified):
Google Forms β Watch responses
β Router (Budget logic)
β multiple Tools β Set variable
β Router (Urgency logic)
β multiple Tools β Set variable
β Router (Company logic)
β multiple Tools β Set variable
β Tools β Set multiple variables (scoreTotal, categoria)
β Router (Lead calda / tiepida / fredda)
β Google Sheets β Add a row
β Telegram β Send a message
Each router branch sets partial score variables (e.g. scoreBudget, scoreUrgenza, scoreAzienda).
At the end, a Tools β Set multiple variables module calculates:
- scoreTotal (sum of the partial scores)
- categoria (HOT / WARM / COLD)
Problem:
The final score variables (scoreBudget, scoreUrgenza, scoreAzienda, scoreTotal, categoria) are NOT appearing in Google Sheets and Telegram.
The columns in Google Sheets remain empty and the Telegram message shows labels but no values.
The scenario runs without errors.
I suspect this is related to variable scope across Routers or to variables being set in different branches.
What is the correct and reliable way to calculate lead scoring across multiple routers and then persist the final values so they can be used in Google Sheets and Telegram?
Create public scenario page
Screenshots (scenario flow, module settings, errors)
1 Like
Hey there,
you canβt directly map items from other routes. In your case you need a Get Multiple variables to retrieve them.
But do you though? All of those routers and filters can be written as formulas directly inside the google sheets module.
1 Like
Welcome to the Make community!
Alternatively, you could avoid using routers and just chain as many Set Multiple Variables modules as you need together. Routers are usually used when you have more than one bundle to process, e.g. from an iterated array or search module. Right now you are processing individual form submissions from the trigger module.
If you need further assistance,
Please provide the output bundles of the trigger module by getting the bundle from a previous run from the Scenario βHistoryβ tab.
Providing the bundles from a scenario run will allow others to replicate what is going on, especially if there are complex data structures (nested arrays and collections) and external services. This helps mapping the correct raw variable names from collections (instead of the label/display name).
Click on the white speech bubbles on the top-right of each module and select βDownload output (or input) bundlesβ.

A. Upload a Text File
Save each bundle contents in a plain text editor as a moduleNumber-output.txt file. Open the file to check if it has not added additional formatting or encoded the plain text.
-
You can upload files and images to this forum by clicking on the upload button:

Uploading an attachment here will look like this:
module1-input.txt (1.2 KB), module1-output.txt (3.4 KB)
B. Insert a Formatted Code Block
If you are unable to upload files on this forum, alternatively you can paste the bundles AND format them correctly.
Formatting IS Important! 
Here are some ways to provide text content in a way that it wonβt be modified by the forum.
-
Method 1: Type code fence manually β
Manually type three backticks ``` in a separate line before and after the content, like this,
```
text goes here
```
-
Method 2: Highlight the pasted content, then click the preformatted text/code button β

-
Method 3: Upload your file elsewhere and share the public link β
This method is only advised for large files exceeding the forum upload limit.
This will allow others to better assist you. Thanks!
β @samliew
P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!