Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to trim Hour_Quarter_ID

I have QVD files and for viewing the content inside it I just do drag and drop the qvd on Qlikview so I am able to see the content of qvd.

Here I want to trim my Hour_Quarter_ID in >=201501010000 and <=201512312359

So can anyone explain this in detail that how to do it while drag and drop qvd onto qlikview?

2 Replies
sunny_talwar

May be this:

LOAD *

FROM Source.qvd (qvd)

WHERE Hour_Quarter_ID >=201501010000 and Hour_Quarter_ID <=201512312359;

Anil_Babu_Samineni

LOAD *

FROM Source.qvd (qvd)

WHERE Hour_Quarter_ID BETWEEN >=201501010000 and <=201512312359;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful