Hi,
I am trying to create an action button with type : External : Go to an website and here’s the issue
When i hard code “www.google.com” - it works as expected ( there’s a button that’s clickable and takes me to google.com).
When i use expressions to return a link to google sheets, the button disappears.
The expressions I have tried so far
- ANY(SELECT(mytable[URLcolumn],([_THISROW].[ID] = [ID])))
- INDEX(SELECT(mytable[URLcolumn],([_THISROW].[ID] = [ID])),1)
- TRIM(ANY(SELECT(mytable[URLcolumn],([_THISROW].[ID] = [ID])))
- CONCATENATE(“”“”,ANY(SELECT(mytable[URLcolumn],([_THISROW].[ID] = [ID]))),“”“”)
- LINKURL(ANY(SELECT(mytable[URLcolumn],([_THISROW].[ID] = [ID]))))
I have validated the following and still the button disappears,
- the value in URL column is valid hyperlink
- the test returns a valid url
- i have updated the value in URLcolumn to “www.google.com” and button still disappears
The button appears and is clickable only when i hardcode the link.