Best way to omit optional parameters in formulas?

These are “named parameters” and should work using the following strategy (using Image() as an example):

Image("https://myimageurl.com",height: "100")

Where the possibilities for parameters are…

Image​(url, width, height, name, style​)

So using the parameter name:, then the value in quotes, should keep you from having to add placeholders.

4 Likes