Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi , I have my data as below
ID Status Type Amount
1 Active Active 234
1 Complete Active 440
2 Active Active 333
3 Complete Active 220
Here If Status is Active and Complete I want ID with Active to be picked else everything else.I want the output as below.
ID Status Type Amount
1 Active Active 234
2 Active Active 333
3 Complete Active 220
Thanks much.
Try this
Table:
LOAD * INLINE [
ID, Status, Type, Amount
1, Active, Active, 234
1, Complete, Active, 440
2, Active, Active, 333
3, Complete, Active, 220
];
Right Join (Table)
LOAD ID,
MinString(Status) as Status
Resident Table
Group By ID;
Script or Front end? May be this in script?
Right Join
LOAD ID,
MinString(Status) as Status
Resident Table
Group By ID;
We think a like
But, Late as always