Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
knightwriter
Creator III
Creator III

Simple Date Graph

Hi All,

Basic question here. I want to create a graph showing:

  • medals won in 2015
  • By month (x-axis)
  • Count the medals per month

my fields available are:

  • [Medal.Won/Lost Date]
  • [Medal.Status]= 'Won'

I cannot get this expression as I need to use the Won/Lost date as both the InYear and month.

Appreciate any help

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Dimension: MonthName([Medal.Won/Lost Date])

Expression: Count({<Year = {'2015'}, [Medal.Status] = {'Won'}>} [Medal.Status])

View solution in original post

2 Replies
sunny_talwar

May be this:

Dimension: MonthName([Medal.Won/Lost Date])

Expression: Count({<Year = {'2015'}, [Medal.Status] = {'Won'}>} [Medal.Status])

knightwriter
Creator III
Creator III
Author

Thanks again sunindia, great stuff.