The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi , I successfully worked out how to add web urls to a table , so when published the end user can click on the web url and it opens up the webpage , but I have been asked if it was possible to have the webpages open up in a new window. is this possible in PowerBI
Hi @Pandadev ,
Based on my test , It opens url in a new tab by default in power bi. Would you please refer to https://docs.microsoft.com/en-us/power-bi/developer/visuals/launch-url
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Thanks , where and how do I add this code please , still only into my 3rd month of learning powerBI , so still very much a novice
import powerbi from "powerbi-visuals-api"; import IVisualHost = powerbi.extensibility.visual.IVisualHost; export class Visual implements IVisual { private host: IVisualHost; // ... constructor(options: VisualConstructorOptions) { // ... this.host = options.host; // ... } // ... }