Select to view content in your preferred language

How do I format links to locally stored files?

930
2
Jump to solution
11-08-2016 08:55 AM
DavidForbuss1
Frequent Contributor

I have a map reference grid that I'd like to be able to click on and have it open an ACAD map stored on a network drive.  I keep getting this error when I try to format the link (drawing_nu is the drawing number that I want to open).  This works fine from within ArcMap, and I'd like to migrate this capability to AGOL.  Any help would be much appreciated!

0 Kudos
1 Solution

Accepted Solutions
KellyGerrow
Esri Alum

David Forbuss

Try putting the url that you are using in single quotes. This will let the expression builder know that this is a literal string and not a field variable.

concat('http://<ipaddress>/BCVSAGIS/RECMAPS',drawing_nu)

Cheers,

Kelly

View solution in original post

2 Replies
KellyGerrow
Esri Alum

David Forbuss

Try putting the url that you are using in single quotes. This will let the expression builder know that this is a literal string and not a field variable.

concat('http://<ipaddress>/BCVSAGIS/RECMAPS',drawing_nu)

Cheers,

Kelly

DavidForbuss1
Frequent Contributor

That worked!  Thanks Kelly!

0 Kudos