Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Note : I have complete data range from 1/1/2020 till today 6/1/2021 shown below
Input Date Range
01/01/2020 |
till
06/01/2021 |
and I just want to store the values in QVD shown in the Image
Current month all dates till today and previous months only Month End values.
Output Required:
and store in qvd.
@sunny_talwar @rbecher @Gysbert_Wassenaar@rwunderlich@Anonymous@nicolett_yuri@jagan@maxgro@stevedark@Peter_Cammaert
Try using a where clause like:
WHERE
SnapshotCFT >=MonthStart(Today()) and SnapshotCFT<=Today()
or
(SnapshotCFT <=Today() and Floor(SnapshotCFT)=Floor(MonthEnd(SnapshotCFT)));
Try using a where clause like:
WHERE
SnapshotCFT >=MonthStart(Today()) and SnapshotCFT<=Today()
or
(SnapshotCFT <=Today() and Floor(SnapshotCFT)=Floor(MonthEnd(SnapshotCFT)));
Thanks @tresesco , for your time.