Error in button formula

When the button formula is used:
button(‘www.url.com’, ‘label’), it tries to open such tab:
http://…host…/database/152/table/www.url.com
but, it should open this url: ‘www.url.com’ instead.
like what happens via url fields.

Hello @abdolsattar, you need to include the scheme (http:// or https://) in your URL.

Your formula should look like this: button('http://url.com/', 'label') :slightly_smiling_face:

great. thanks a lot.