How can i sum the amt_points_earned column with the same [employee] using virtual column?

Hi @Audit_CKGoC

You did not share your table structure so it’s hard to tell, but:

  • assuming you have a table β€œPerson”
  • assuming the table you show is named β€œScore”, and its column bpar_i_person_i_clerk is of type Ref, refering to table Person
  • assuming amt_points_earned is of type Decimal

You may want, in table β€œPerson”, add a virtual column and use this expression:
SUM([Related Scores][amt_points_earned])
For reference:

1 Like