Pull field data from linked Entity

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wdbruwer
    Junior Member
    • Jan 2023
    • 10

    Pull field data from linked Entity

    Hi,

    We have a relationship between tasks and a custom entity ( IIC database). It is a One to Many relationship i.e. One task can be linked to multiple IIC numbers.

    In tasks we have a Date field for "Date completed". Is there a way for me to pull this date through to the IIC Database entity via the above relationship?
  • shalmaxb
    Senior Member
    • Mar 2015
    • 1602

    #2
    Yes, that should work by creating that Date field in IIC Database and popuate it by formula, like so:

    dateCompleted = task.dateCompleted;

    where the names of these fields/relationship maybe different in your case.

    Comment

    • wdbruwer
      Junior Member
      • Jan 2023
      • 10

      #3
      Originally posted by shalmaxb
      Yes, that should work by creating that Date field in IIC Database and popuate it by formula, like so:

      dateCompleted = task.dateCompleted;

      where the names of these fields/relationship maybe different in your case.
      Thanks, I actually played around with the Foreign field option and linked it that way. Works perfectly.

      Comment

      Working...