like this
https://mywebsite.URL/admin/viewMerchant/+SF Field+/
3 answers
Lakhan Meghani (Cube84) Forum Ambassador
Hi Leah
it looks like you want to Concate 2 strings.
This can be done using formula field or you can do the same with trigger.
So your trigger simply concate the string as mentioned in your usecase.
For(objname t :trigger.new) {
t.yourFinalField = 'https://mywebsite.URL/admin/viewMerchant/' + t.SFField + '/' ;
}
DML update;
Here is the Psuedo code which helps you to build a logic.
IF IT works for you then kindly mark the best answer and close the thread.
Thanks