Forum Discussion

hheckert's avatar
hheckert
Qrew Member
2 days ago
Solved

Can I create a single field that displays record owners from a child table

Hi, The use case for my application is for users to track their testing results - there is a parent table for requests and a child table for activities (i.e., test results). I am wanting to create a...
  • MarkShnier__You's avatar
    2 days ago

    np,

    Just make a new formula text field on the child table called [Record Owner Name]

     

    UserToName([Reciord Owner])

     

    Then make a combined text summary of that field on the left side of the relationship.

    You can use that field on the Parent, but I always then make a new formula text field on the Parent like this to it shows more attractively.

    SearchAndReplace(ToText([Combined text Summary Record Owner Name]), " ; ", "\n")

    .