Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to be able to list any missing dates for a specified month in a text box.
i.e.
Object1 has some dates in July missing, so I want to be able to see a list of the dates that are missing in a text box.
Within my data, I haven't got values against those dates.
I have attached a sample data sheet and qvw.
Please if someone can help me with this.
Thank you.
try
concat(distinct {$<Date=E({< Rate={"*"} >}) >} Date ,' | ',Date)
Hi Robin,
This works, Thank you for the response.
how can we obtain these dates in a variable- Minimum date and the maximum date?
Thank you
min(distinct {$<Date=E({< Rate={"*"} >}) >} Date)
max(distinct {$<Date=E({< Rate={"*"} >}) >} Date)
???