When I’m adding new field “Show Type” to open a URL in the form, it’s opening the URL but not correctly.
My URL is “www.gmail.com” but it is opening “https://www.appsheet.com/start/www.gmail.com”
is anything that I’m missing?
When I’m adding new field “Show Type” to open a URL in the form, it’s opening the URL but not correctly.
My URL is “www.gmail.com” but it is opening “https://www.appsheet.com/start/www.gmail.com”
is anything that I’m missing?
Try to write the URL like “https://www.appsheet.com”
Thank you @Aleksi, it’s working.
You’re welcome
I am trying to keep the following link and i am unable to do so https://tinyurl.com/yxnd57bq suggestions
What does “trying to keep” mean?
means unable to keep the link or open the link
While this works, it is somewhat annoying as you don’t know if the user entered the http:// or not. The following logic does help (Link is the source field of the address):
HYPERLINK(IF(CONTAINS([Link], ‘http’),
[Link],
CONCATENATE(“http://”, [Link])
),
[Link]
)