Have multiple hyperlinks in a report, everytime a click on a hyperlink the webpage opens in a new tab, Is it possible to open the hyperlinks in only one tab instead of multi
Yes, it's possible. Use syntax
for all relevant links. This way the first time a link is clicked a new tab will be opened; for subsequent clicks, that tab will be reused.
EDIT: if you're opening the link in javascript using window.open
, then you need to specify the name of the tab/window as the second parameter:
window.open('http://mywebpage.html', 'rptTab');