ScottBaxter Posted January 17, 2013 Posted January 17, 2013 Hello, I need to do the following within a calculation field: If (Field = "Current"; Left(Name; 7) ; ) But it doesn't seem to work. Can anyone help me out? Thanks, Scott
Raybaudi Posted January 17, 2013 Posted January 17, 2013 If (Field = "Current"; Left(Name; 7) ; ) isn't correct; try: If (Field = "Current"; Left(Name; 7) )
ScottBaxter Posted January 17, 2013 Author Posted January 17, 2013 Hi Daniele, Thanks for the quick response. I have a field that I just want to show the first 7 characters... If it has more then 7 I want it to remove the rest? Is this possible? Thanks
Raybaudi Posted January 17, 2013 Posted January 17, 2013 So, if you have the field "Name", the caculated field must have this calc: Left ( Name ; 7 )
ScottBaxter Posted January 17, 2013 Author Posted January 17, 2013 I have a field called Name I want to copy this field but the max characters I can have is 7 anything over this I want to remove? Is this possible?
ScottBaxter Posted January 17, 2013 Author Posted January 17, 2013 Yea it gives me a number when I export the records?? Not what the value of that field is?
Raybaudi Posted January 17, 2013 Posted January 17, 2013 A pratic example: The field "Name" contains: ScottBaxter The calculation field, result text, will have: ScottBa
ScottBaxter Posted January 17, 2013 Author Posted January 17, 2013 Sorry my fault the result was set to number... Thanks for your help!!
Recommended Posts
This topic is 4385 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