Writing variables and functions by hand

What are you trying to achieve?

I would like to find a way to enter ready formulas by hand. Sometimes I need to duplicate certain steps several times and clicking everything is tiring and time-consuming. It would be easier to simply copy-paste.

For example, I mean entering a formula like this: get(variable;name)

I know that I can use the {{ notation to directly refer to variables.

Steps taken so far

I tried to do it this way {{get(}}{{1.variable}}{{;}}name{{)}}. Unfortunately, after pasting I get an expression in the form: get()variablename

Welcome to the Make community!

The correct format is

{{ get(1.variable; "name") }}

(copy-paste the above into the field, or type it exactly as shown)

or

{{get(1.variable;name)}}

You might be interested in Autocomplete Commonly-Used Functions in IML (Mapping) Fields!

Hope this helps! Let me know if there are any further questions or issues. P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!

— @samliew

1 Like

Hi @samliew

Thank you. It helps very much.

I have another problem with this. I use this expression:

{{if(3.results[15].value!=null;'"'3.results[15].value'"';null)}}

It is translated to:

img

It is exactly what I need. Unfortunately, after I save the module, double quote marks disappear. Then when i open it (module) again I see:

img2

When i run scenario double quotes isn’t included in output bundle.

How i can prepare this expression to include this outer double quote marks literally as sign " ?

Thank you very much in advance.

No problem, glad I could help you with your original question.

1. If anyone has a new question in the future, please start a new thread. This makes it easier for others with the same problem to search for the answers to specific questions, and you are more likely to receive help as newer questions are displayed higher on the forum’s “new” page.

2. The Make Community guidelines encourages users to try to mark helpful replies as solutions to help keep the Community organized.

This marks the topic as solved, so that:

  • others can save time when catching up with the latest activity here, and
  • allows others to quickly jump to the solution if they come across the same problem

To do this, simply click the checkbox at the bottom of the post that answers your question:
Screenshot_2023-10-04_161049

3. Don’t forget to like and bookmark this topic so you can get back to it easily in future!

Hope this helps! Let me know if there are any further questions or issues. P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!

— @samliew