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!
Solved! Go to Solution.
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
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
That worked! Thanks Kelly!