Skip to main content
I am using a flow to move date from one object to another. But the object I'm referencing has a Lookup and when pulling the name I only get the ID. Is there a way to get the lookup ame instead of the id?
3 risposte
  1. 20 feb 2019, 03:38
    Are you trying to get the name from the lookup field when query the other record? If you don't want to use another SOQL then you should just create a new formula field that is Lookup__r.Name. This will give you the name of the record instead of the Id since lookup fields will return the SF Id. You could also create another lookup to the object and get the Name that way if you don't want to use a formula field. It really depends on your use case
0/9000