Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
shrayas
Contributor II
Contributor II

Perform some operation on data based on month level, so create a column “MONTH” using renamed column “DATE”.

I Need to Perform some operation on data based on month level, so create a column “MONTH” using renamed column “DATE” .


LOAD SYMBOL,
SERIES,
OPEN,
HIGH,
LOW,
CLOSE,
LAST,
PREVCLOSE,
TIMESTAMP as Date,
TOTALTRADES,
ISIN,
If(WildMatch(SYMBOL,'AAAAAAA*'), 0, SYMBOL)
FROM
[...........................]
(ooxml, embedded labels);

Labels (3)
1 Solution

Accepted Solutions
Taoufiq_Zarra

@shrayas  if I understood correctly :

...

Month(floor(TIMESTAMP )) as MonthField,

...

and use MonthField after

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

2 Replies
Taoufiq_Zarra

@shrayas  if I understood correctly :

...

Month(floor(TIMESTAMP )) as MonthField,

...

and use MonthField after

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
shrayas
Contributor II
Contributor II
Author

Perfect mate thanks!!