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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
veeranj
Creator II
Creator II

Need help ???

Hi Group,

I have table like position_id and its creation_date and its closed date and status(closed or open)

Now i want to calculate based on months how many positions are opened and how many positions are closed.

As here i am having two dates,can i have a common(single) date and based on that dimension,i want to find no.of posiitons opened and closed.??

Thanks,

Anjee

4 Replies
sujeetsingh
Master III
Master III

How to use a common date.

One option i can suggest is that you can use Min(Creation_Date) and Max(Closed_Date) and create a master calender.

mangalsk
Creator III
Creator III

Hello,

You can do it using concept of master calender

jagan
Partner - Champion III
Partner - Champion III

Hi,

Attach some smaple data and file.

Regards,

jagan.

MarcoWedel

you can crosstable load the table to get the date and event type (opened / closed) as two different fields.

Selecting in a month(date)-Listbox would select both kinds of events (better create a seperate month field during load)

You could create two expressions like

count({$<event_type={'opened'}>} date)

and

count({$<event_type={'closed'}>} date)

to count the opened and closed positions per dimension value (e.g. month).

hope this helps

regards

Marco