Get URL-encoded string
=ENCODEURL(text)
| Parameter | Description |
|---|---|
text |
The text to be encoded. |
To use ENCODEURL, supply text or a cell reference that contains text. In the example below, ENCODEURL is used to encode the text "Hello World!"
=ENCODEURL("Hello World!") // returns "Hello%20World%21"
In the example at the top of the page, the formula in cell C5, copied down is:
=ENCODEURL(B5)