Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

Two different date

Hi All, 

I have two dated one is "Order Date" and the second is "Update Date".

Now How can I get the common month from this two date and show the tickets raised 

 

Thanks in Advance

1 Solution

Accepted Solutions
sonkumamon
Creator
Creator

You can use a date bridge table:

DateBridge:

Load

TicketID

OrderDate as Date

'Order' as DateType

Load

TicketID

UpdateDate as Date

'Update' as DateType

 

And then in the chart you can use the Date field as the dimension, and as a measure use:

Count(Distinct TicketID)

View solution in original post

2 Replies
Taoufiq_Zarra

@smilingjohn  can you share a sample data and the expected output ?

Regards,
Taoufiq ZARRA

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

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

You can use a date bridge table:

DateBridge:

Load

TicketID

OrderDate as Date

'Order' as DateType

Load

TicketID

UpdateDate as Date

'Update' as DateType

 

And then in the chart you can use the Date field as the dimension, and as a measure use:

Count(Distinct TicketID)