J just2cool Registered User. Local time Yesterday, 16:17 Joined Jun 20, 2007 Messages 16 Jun 21, 2007 #1 I have a field which looks like this - "d123456", I will have to display the field without the "d" in front, meaning I will need to show "123456" Any idea how I can do this? Thanks!
I have a field which looks like this - "d123456", I will have to display the field without the "d" in front, meaning I will need to show "123456" Any idea how I can do this? Thanks!
M Michael J Ross Registered User. Local time Today, 00:17 Joined Mar 2, 2006 Messages 245 Jun 21, 2007 #2 If the field is always the same length then use Right([nameofyourfield],6)
J just2cool Registered User. Local time Yesterday, 16:17 Joined Jun 20, 2007 Messages 16 Jun 21, 2007 #3 Thanks for your reply. But the number of characters in the field varies. Sometimes it is d123 sometimes it can be d12345, etc.
Thanks for your reply. But the number of characters in the field varies. Sometimes it is d123 sometimes it can be d12345, etc.
M MStef Registered User. Local time Today, 00:17 Joined Oct 28, 2004 Messages 2,251 Jun 21, 2007 #4 Try this: Right ([FieldName],(Len([FieldName] - 1)))
J just2cool Registered User. Local time Yesterday, 16:17 Joined Jun 20, 2007 Messages 16 Jun 21, 2007 #5 This one worked Right([Orig],Len([Orig])-1) Thanks!!