Maybe journal breaks them as this seems to work (using JMP16)
Names Default To Here(1);
//Making a clickable link show up in a formula column
dt = New Table("Example",
Add Rows(2),
New Column("URL",
"Character",
"Nominal",
Formula("https://www.jmp.com/" || :Page),
Set Property(
"Event Handler",
Event Handler(Click(JSL Quote( Function( {dt, col, row}, Web( dt:col[row] ) ) )))
)
),
New Column("Page",
"Character",
"Nominal",
Set Values({"support/knowledge_base.shtml", "en_us/about.html"})
)
);
(dt << get as report) << Save Interactive HTML("$DOWNLOADS/test.html");
Web("$DOWNLOADS/test.html");
other method which might not be necessary anymore Insert Hyperlink in Text in the cells
-Jarmo