Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys
I have a dashboard that tracks samples pending. For a certain sample type e.g. SAMPLE_TYPE='Type1' I want to return the minimum date, while still having the ability to filter. Based on users filtering the sample might not appear in the selections, however I still want the earliest date to show despite filtering.
Is this something that must be done using set analysis and if so how could I incorporate it? Thanks
Either have the value of the earliest date in a separate column for all rows to the sample type (done in the script) like
Data:
Load
SampleID,
SampleType,
Date,
...
from Data.qvd (qvd);
left join
Load
SampleType,
date(min(Date)) as MinDate
resident Data group by SampleType;
Or you can do it with set analysis where you ignore the user selections:
date(min({1} Date))
Either have the value of the earliest date in a separate column for all rows to the sample type (done in the script) like
Data:
Load
SampleID,
SampleType,
Date,
...
from Data.qvd (qvd);
left join
Load
SampleType,
date(min(Date)) as MinDate
resident Data group by SampleType;
Or you can do it with set analysis where you ignore the user selections:
date(min({1} Date))