James Gill Posted July 14, 2010 Posted July 14, 2010 I am trying to create a variable that contains a file path that is based upon an employer name. The problem is that occasionally an employer name will contain a "/" in it and I cannot save records as a PDF as it results in an invalid file path. I'm trying to find a way to set my file path variable to account for this but I haven't been able to wrap my head around using the substitute command to do this. I'm able to successfully change the "/" to a "-" but I can't get the calculation to retain the rest of my employer name, just to parts that I replace. So basically, I want this to take; "Barts Beeswax/Honey" and change it to "Barts Beeswax-Honey" any time an employer name contains the "/" character.
bruceR Posted July 14, 2010 Posted July 14, 2010 Set Variable [ $path; "file:" & get( deskTopPath) & substitute( YourField; "/"; "-") & ".pdf" ]
James Gill Posted July 14, 2010 Author Posted July 14, 2010 (edited) Wow...*facepalm I knew I missing something easy... Thanks a lot. Edited July 14, 2010 by Guest
Recommended Posts
This topic is 5304 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now