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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

show datavalues upto today

i have date field and Actual values

here i want to show only data Upto Today() means Feb-15. Cutoff the values after feb-2015.

how to write this in set analysis

i need this in front end only

Thanks,

Labels (1)
13 Replies
Anonymous
Not applicable
Author

Hi Massimo,

still no luck,,

Please find the above Sample application

Thanks for your time

maxgro
MVP
MVP

replace the values in Date field with date

example

load * inline [

Date,      Actual Site Activation

3/15/2015,10

2/15/2015,20

1/15/2015,2

4/15/2015,30

];

in chart

=Sum({$<Date = {"<=$(=(MonthEnd(Today())))"}>} [Actual Site Activation])

its_anandrjs
Champion III
Champion III

Hi,

It is better you use date format in the script and then use in the chart

Ex:-

T1:

LOAD Date,

     [Actual Site Activation]

FROM

j1.xlsx.xls

(biff, embedded labels, table is Sheet1$);

NoConcatenate

LOAD

   Date(date#(Date,'MMM-YY'),'MMM-YY') as DateField,

    [Actual Site Activation]

Resident T1;

DROP Table T1;

And in charts

Dim:- DateField

Expre:- =Sum({$<DateField = {'<=$(=(Date(MonthName(Today()),'MMM-YY')))'}>} [Actual Site Activation])

CapChart.PNG

Regards,

Anand

Not applicable
Author

Hi,

I have attached a qvw file for you in previous post and that is working fine