This content has been marked as final.
Show 6 replies
-
trim text in legend using left function
Dennis Hoogenboom Feb 23, 2012 3:13 AM (in response to Anne Duffy)What result are you looking for?
-
trim text in legend using left function
Celambarasan Adhimulam Feb 23, 2012 3:19 AM (in response to Dennis Hoogenboom )Hi,
You can use the same thing as below
=IF(LEFT([Field1],1)="G",Right([Field1],len([Field1])-10),IF(LEFT([Field1],1)="C",Right([Field1],len([Field1])-9))
Hope its your need
Celambarasan
-
-
trim text in legend using left function
jagan mohan rao appala Feb 23, 2012 3:37 AM (in response to Anne Duffy)Hi,
The below expression will directly Trim Field1 in Unqiue Field
=Replace(Unique, Field1, '')
Instead why can't you directly use Field2 as dimension.
Regards,
Jagan.
-
trim text in legend using left function
Anne Duffy Feb 23, 2012 4:18 AM (in response to jagan mohan rao appala )Hi Guys
I wish to get the result :
Bread
Gloves
Shoes
Milk
Gloves
Hat
Jagan do I use the above as a calculate Expression ?
Thanks
-
trim text in legend using left function
jagan mohan rao appala Feb 23, 2012 4:51 AM (in response to Anne Duffy)hi,
Try using this Calculated Dimension, I think it works.
Regards,
Jagan.
-
trim text in legend using left function
Sunil Chauhan Feb 23, 2012 5:15 AM (in response to jagan mohan rao appala )spece should be like below
=replace(Unique,[Field 1],' ')
use in dimension
hope this helps
-
-
-