Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
janardhan
Creator
Creator

filtering

Hi friends ,

please find the attachement , here is the Objectid is repeated so i need to eliminate the repeated one ,  my requirement is

ObjectID                WSTYPE             QTY

OTG115120A001      Normaltid         27

I need like this

5 Replies
Not applicable

Hai,

Use distinct of ObjectID  ,Sorry if i didnt understand you correctly.

Thanks

jagan
Luminary Alumni
Luminary Alumni

Hi Janardhan,

Can you attach the sample file with data?

Regards,

Jagan.

Not applicable

Hai,

Plese use the distinct function for id

distinct(object id)

MayilVahanan

Hi

Are you looking like this

Load * Inline

[

ObjectID,WSTYPE,QTY

OTG115120A001,Normaltid,27

OTG115120A001,Normaltid,

OTG115120A001,Normaltid,

OTG115120A001,Normaltid,

] where Len(Trim(QTY)) > 0;

in script??

its load where qty has value only

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
vgutkovsky
Master II
Master II

Well, the simple answer is that you're using a Table Box when you probably want a Straight Table. Create a Straight Table with dimensions ObjectID and WSTYPE and expression sum(QTY)

Regards,

Vlad