Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count ID by month

Hi All,

I have date field (DD/MM/YYYY HH:MM:SS:YYY), and I have calculating month in vMonth, how do I get : TextCount (ID) based on my vMonth variable?


Thanks,

Lakshmi.

8 Replies
MK_QSL
MVP
MVP

Lakshmi, didnt understand from your explanation properly... can you elaborate little more please?

Anonymous
Not applicable
Author

Please elaborate more on this post

fabio_vallone
Creator
Creator

Instead vMonth, try this:

Dimension: =Date(Monthstart(<DATE FIELD>), 'MMM/yy')

Expression: =TextCount(ID)

Not applicable
Author

Hi Manish,

I have 4 text boxes, 4 variables (vMth1, vMth2, vMth3, vMth4)

In table I have 2 fields: Date, Count.

In the text boxs, I have to show TextCount (ID) based on the vMth.

e.g. vMth = Apr; TextCount (ID) = 20

vMth1 = Mar; TextCount (ID) = 25

vMth2 = Feb; TextCount (ID) = 5

vMth3 = Jan; TextCount (ID) = 30

Not applicable
Author

Laxmi Do you want only month from that date field values???

Not applicable
Author

HI Fabio,

My Diminesion should be Status (another field)

Is:-  Date(Monthstart(<DATE FIELD>), 'MMM/yy')

will give total records of that month for different status? the expression telling that Month start.

fabio_vallone
Creator
Creator

The Dimension Date(Month Start(<DATE FIELD>), 'MMM/yy') ignore days and hours and cumulate TextCount(ID) for each Month and Year. Using this dimension AND the "Status" Dimension you will have Bars or lines "by Month/Year and Status".


Not applicable
Author

Hi Fabio,

Thanks for clarification.

this is working for me.

=TextCount({<Month = {'$_3(vMonth)'}, Year = {'$(vYear)'}>}ID)