Button in a Dashboard linking to a website

Good day, I would like to add a button In a dashboard that will to a FAQ sheet in sharepoint. How could i include the URL in the button action of click . So far i don’t have nothing in the code.

Thank you

Are you set on it being a button?
I have done something similar on a few of our dashboards where I list the URL in a field and then make that field into a clickable link:

grid1.DisplayLayout.Bands[0].Columns[“XFileRef_XFileName”].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.URL;

this will also work with calculated fields if you want to create one with the url as the value.

grid1.DisplayLayout.Bands[0].Columns[“Calculated_HRDocLoc”].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.URL;

1 Like

Thank you for the info it’s working