Daniel N Posted March 27, 2009 Posted March 27, 2009 (edited) How can I replace "_" with "/" in a calculation? Example script: --------------- (Field Value: Document Library::sceneshot = 170_25) (Field Value: Document Library::version = 001) Set Variable [$$sceneshot; Value: Document Library::sceneshot] Set Variable [$$version; Value: Document Library::version] Insert Calculated Result: $$sceneshot & "/" & $$version & "/" --- This calculation will now result in: 170_25/001/ I want to it result in: 170/25/001/ Edited March 27, 2009 by Guest
comment Posted March 27, 2009 Posted March 27, 2009 Try: Set Field [ Resultfield ; Substitute ( Document Library::sceneshot ; "_" ; "/" ) & "/" & Document Library::version ]
Recommended Posts
This topic is 5721 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