Aller au contenu principal

URL in alert box not opening correctly

Commentaires

2 commentaires

  • Berend Veldkamp

    It looks like the string is not properly set, and it now contains the literal text $urlText.result, not the value of the variable. Change it to:

    ="__Description:__ " + $webRequest1.json.data.description + "\n\n__Copyright Text:__ " + $webRequest1.json.data.copyrightText + "\n\n[Metadata record](" + $urlText.result + ")"

    or a slightly more readable format:

    =`__Description:__ ${ $webRequest1.json.data.description }
    
    __Copyright Text:__ ${ $webRequest1.json.data.copyrightText }
    
    [Metadata record](${ $urlText.result })`

     

    0
  • Helen Dornan

    Berend Veldkamp  that's fantastic. Thanks for your help

    0

Vous devez vous connecter pour laisser un commentaire.