January 17, 201313 yr 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
January 17, 201313 yr If (Field = "Current"; Left(Name; 7) ; ) isn't correct; try: If (Field = "Current"; Left(Name; 7) )
January 17, 201313 yr Author 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
January 17, 201313 yr So, if you have the field "Name", the caculated field must have this calc: Left ( Name ; 7 )
January 17, 201313 yr Author 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?
January 17, 201313 yr Author Yea it gives me a number when I export the records?? Not what the value of that field is?
January 17, 201313 yr Solution A pratic example: The field "Name" contains: ScottBaxter The calculation field, result text, will have: ScottBa
Create an account or sign in to comment