January 3, 200620 yr I have a calculated field which I want to be the field 'Title' with all occurrences of some characters (spaces, apostrophes, commas etc.) removed. This has worked fine when only substituting one character but I cannot make it work when I want to remove more than one character. I have tried: Lower ( Substitute ( LeftWords( Title ; 3 ) ; [" ";"_"] ; ["'";""] )) >ERROR: 'Field cannot be found' and nesting: Lower( Substitute ( Substitute( LeftWords( Title , 3 ) , "_" , "" ) ) , "'" , "" ) > ERROR 'Too few seperators' Neither works. What am I doing wrong? Thanks for your help
January 3, 200620 yr Try Lower ( Substitute ( Substitute ( LeftWords ( Title , 3 ) , "_" , "" ) , "'" , "" ) )
Create an account or sign in to comment