Coder Social home page Coder Social logo

Comments (6)

umaxy avatar umaxy commented on August 10, 2024 1

Thanks Alex for pointing this all out.

from office-scripts-docs-reference.

AlexJerabek avatar AlexJerabek commented on August 10, 2024

Hi @umaxy,

I just tested the sample for Range. setHyperlink and it works as intended. Could you please share the Code Editor error you're getting?

from office-scripts-docs-reference.

umaxy avatar umaxy commented on August 10, 2024

Your right it does work. I just noticed a back quote was used instead of a single quotation. I've read documentation on single and double quotes but is the back quote interpreted the same way?

from office-scripts-docs-reference.

umaxy avatar umaxy commented on August 10, 2024

The method only works with back quotes. You cannot use the following https://learn.microsoft.com/en-us/dotnet/visual-basic/programming-guide/language-features/strings/interpolated-strings. Is there any explanation for that behavior?

from office-scripts-docs-reference.

AlexJerabek avatar AlexJerabek commented on August 10, 2024

That link is to the Visual Basic language reference. Office Scripts are written in TypeScript (which is a superset of JavaScript). The use of a backtick is for Template Literal Types. Single or double quote strings do not allow for variables and would have to be assembled through string concatenation. Functionally, the following two lines are the same:

let text = `Setting hyperlink of ${cell.getAddress()} to the ${linkedSheetName} sheet's A1 cell`;
let text = "Setting hyperlink of " + cell.getAddress() + " to the " + linkedSheetName + " sheet's A1 cell";

Personally, I find the first version more readable and less likely to miss a space or something.

from office-scripts-docs-reference.

AlexJerabek avatar AlexJerabek commented on August 10, 2024

Closing this issue, since we've confirmed the samples are fine. Happy to keep chatting about TypeScript in the comments.

from office-scripts-docs-reference.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.