Hi,
I'm having trouble opening my PDF from an onselect of an Icon. The PDF is linked to my sharepoint library. I currently am using the below in the OnSelect for the icon, but it doesn't open anything up. I'm assuming it isn't linking correctly, but not sure where it is wrong.
'Document #' is the column in Invoices that should match to Thisitem.Field_19, which is from another sharepoint data page called Detailed Line Items. The icon is within a gallery that is linked to Detailed Line Items data page. Any suggestions or help is appreciated!
ForAll(
Filter(
Invoices,
StartsWith(
'Document #',
ThisItem.Field_19
)
),
Launch(
ThisRecord.'Link to item',
{q: "Power Apps"},
LaunchTarget.New
)
)