Hey there,
I have written a workbench where I get some data from some weather-stations and generate the average temperature for that station as a line in a new Excel file.
It works great but we have 100 Weather stations and I want to make it with all of the stations and get the excel file with 100 lines...
I imagine it like:
for i in 0..99 loop
getDataFromStation(i)
processData()
writeDatain Excel(i)
end loop
But I have no way to do those loop in FME Desktop or Server. Or at leat I do not find it...
Has anyone any idea?
thanks a lot