Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to find every month 4th for each month in qlikview
try below
Date(monthstart(dateFieldName)+4)
Regards,
is that datefield name is date or what
if i keep the date also i am not getting Nov 4th.
I am getting nov 1st only
Try this
=Date(monthstart(Today())+3)
Instead of Today() you can put your date field
From below data, What you are expecting?
Load * Inline [
DateField
02-10-2018
03-10-2018
04-10-2018
07-10-2018
01-11-2018
02-11-2018
03-11-2018
04-11-2018
];
HI,
With the limited information i would guess you would want something like the below.
IF( DAY(Date) = 4,1,0) as 4thDayFlag,
This would give you a flag you can use to pick out any date starting the 4th.
Mark