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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

First day of each month


Hi, I have a set of date in this format "dd/mm/yyyy" for every month of the year 2015.

screenshot.png

I need to show the first day of each month of the year in QlikSense.

Can someone help me to write the expression?

2 Replies
sunny_talwar
MVP
MVP

May be create a field like this:

LOAD Date,

          MonthStart(Date) as MonthStartDate

....

or use a filter expression

MonthStart(Date)

Anonymous
Not applicable
Author

Hi

try this  for the  FIRST Day

Day(MonthSTART(DATA))


Last day


Day(MonthEnd(DATA))