D
D
dzhazagalieva2020-07-02 13:16:41
Python
dzhazagalieva, 2020-07-02 13:16:41

How to write a link for google sheets in the parser?

bike_param = {
        'Название:' : bike_name,
        'URL:' : '=ГИПЕРССЫЛКА("' + url +'"; "link")',
    }

The formula is correct, but when you open the tables:
5efdb2e880be6064791051.png

If you copy the text into a new cell, it displays as it should:
5efdb3cad9227599289160.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
Grigory Boev, 2020-07-02
@dzhazagalieva

Try the HYPERLINK () function

bike_param = {
        'Название:' : bike_name,
        'URL:' : '=HYPERLINK("' + url +'"; "link")',
    }

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question