Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm having problem with showing data in pivot table.
You can see, some WorkOrder having two values in Shift, but I would like to ignore first value and show only last one.
Try this
=aggr(only({<Shift = {"=RowNo() = Max(Total RowNo())"}>} Shift), WorkOrder)
@okin_pfa here's one approach from the backend.
Data:
LOAD WopId,
WorkOrder,
Shift
FROM SourceTable;
Inner Join
LOAD WorkOrder,
Shift
Resident Data
Group By WorkOrder;
No, it's not showing anything