Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do I pull this table with only the lines with the highest value of "Data Entrada" and grouped by "Processo" and "Ordem de Compra" ?
Try Using Inner join like this
Maintable:
Load * from Source;
Inner join
Load Max("Data Entrada") as "Data Entrada" resident Maintable;
If you want to also group the data you can use those field in inner join table 2
Try Using Inner join like this
Maintable:
Load * from Source;
Inner join
Load Max("Data Entrada") as "Data Entrada" resident Maintable;
If you want to also group the data you can use those field in inner join table 2