Forum Discussion

audrianna21's avatar
audrianna21
Frequent Visitor
2 years ago
Solved

Dataflow Gen2 Lookup Activity - Get First Row Only

I am currently attempting to get 1 record out of a delta lake table in my lakehouse. When configuring the lookup activity there is a selection to First Row Only. I do want only 1 row, but I need a wa...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi audrianna21 ,

    To filter the data where "Running Process = Bob3", you will need to use a query within the Lookup Activity. In the settings for the Lookup Activity, specify your query in the 'Query' field to filter the data. For example:

    SELECT * FROM your_table WHERE RunningProcess = 'Bob3'

    Replace your_table with the actual name of your table. This will ensure that the Lookup Activity only retrieves records where the Running Process is equal to 'Bob3'.

    Selecting the First Row: Once you have filtered the data, the "First row only" checkbox will ensure that only the first row of the filtered result set is returned. Make sure this checkbox is selected in the Lookup Activity settings.

    Best Regards,
    Dino Tao
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.