How do you Filter for Duplicate Record in a view and Return a unique record?

Hello,

I am trying to filter for duplicate record and only return 1 row/record for the image below:

I am currently storing the returned in a local variable:

Any help will be appreciated.

Thanks

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Lead Developer

    If the data is in a view, the best way to solve this is in the view -- since you only want unique records. There are many ways to get only unique records returned, but that will depend on your view construct and the data. You can try DISTINCT, Group BY, MIN/MAV, etc.
    Hope this gets you started on what to maybe look up for the DB you are using and try some things out.

Reply
  • +1
    Certified Lead Developer

    If the data is in a view, the best way to solve this is in the view -- since you only want unique records. There are many ways to get only unique records returned, but that will depend on your view construct and the data. You can try DISTINCT, Group BY, MIN/MAV, etc.
    Hope this gets you started on what to maybe look up for the DB you are using and try some things out.

Children