I've looked at a couple of websites that explain how this works including:
But so far, I am not able to get the formatting correct to open the link in a new window. Here is my expression that works, but doesn't open a new window:
="https://servicedesk.gooutdoorsvirginia.com/ImageProcessing/DocumentViewer.aspx?b=" & Fields!BatchID.Value & "&s=" & Fields!SeqNumber.Value & "&d=" & Cstr(Format(Fields!UploadDate.Value,"yyyy-MM-dd")) & "&r=0"
I've tried a couple of variations to get this to work but nothing is working. Would anyone be able to assist me in this endeavor?
Tested but does not work:
="javascript:void(window.open('https://servicedesk.gooutdoorsvirginia.com/ImageProcessing/DocumentViewer.aspx?b=" & Fields!BatchID.Value & "&s=" & Fields!SeqNumber.Value & "&d=" & Cstr(Format(Fields!UploadDate.Value,"yyyy-MM-dd")) & "&r=0','_blank'))"
="javascript:void(window.open('"+ https://servicedesk.gooutdoorsvirginia.com/ImageProcessing/DocumentViewer.aspx?b=" & Fields!BatchID.Value & "&s=" & Fields!SeqNumber.Value & "&d=" & Cstr(Format(Fields!UploadDate.Value,"yyyy-MM-dd")) & "&r=0" + "','_blank'))"