You need to sign in to do that
Don't have an account?

Formula Field With URL and APEX Code - Syntax Error
How can I get this to work, trying to create a URL within records to bring employees to a tracking page for shipments:
https://www.fedex.com/apps/fedextrack/?tracknumbers=LEFT(Auto_TrackingNum_Step1__c,find(' ',Auto_TrackingNum_Step1__c))
This doesnt seem to be working as I get a syntax error
https://www.fedex.com/apps/fedextrack/?tracknumbers=LEFT(Auto_TrackingNum_Step1__c,find(' ',Auto_TrackingNum_Step1__c))
This doesnt seem to be working as I get a syntax error
What is the error? If you're pasting that string into the formula then it will probably error out because you didn't surround your string in single quotes.
'https://www.fedex.com/apps/fedextrack/?tracknumbers=' + LEFT(Auto_TrackingNum_Step1__c,find(' ',Auto_TrackingNum_Step1__c))
Try pasting the above and see if it works.
All Answers
What is the error? If you're pasting that string into the formula then it will probably error out because you didn't surround your string in single quotes.
'https://www.fedex.com/apps/fedextrack/?tracknumbers=' + LEFT(Auto_TrackingNum_Step1__c,find(' ',Auto_TrackingNum_Step1__c))
Try pasting the above and see if it works.