Skip to main content

Example of my database : 

 

Capture 

I am a beginner in FME, thanks for help !

The most efficient is to let Oracle do the filtering for you, e.g using a SQLCreator with something like the following:

SELECT *
  FROM (SELECT c.*,
               rank() over (partition by "Section" order by "Date" desc) rnk
          FROM "MyOracleTable" c)
 WHERE rnk = 1

Then send the output to an Excel writer.


Reply