Help

Re: Add Tracking a package in the Button field

1184 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Scott_Gardner1
7 - App Architect
7 - App Architect

Hello-

Trying to add a button link that has a formula with another field that has the tracking number (FedEx) so when you click the button you are automatically taken to the page that tracks your package.

Thanks,
Scott

3 Replies 3

Hey @Scott_Gardner1!
Welcome in!

So, you’ll need a field dedicated to the tracking number.
Then create a formula field and use this formula format:


'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=' &
TRIM(
    {Tracking Number}
)

I added the TRIM() function as it acts as a sort of defense against basic data entry errors if you’re copy and pasting, etc.

Here is the isolated link:
https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=
The tracking number just fits at the end of the URL.

This is perfect, thank you very much!!

image001.png

image002.png

image003.png

image004.png

image005.png

Hi would you be able to create one for USPS tracking? Thank you!