Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
Please find the attached QVW that has the raw data.
Requirement:
assuming current date is 03/08/2019, the rate for CAD has not flown in for this date. In such case, I need to pull value from date that last had the value along with its date(in new column). Also there are chances of file being missed for a day, in that case we will have to pick data from previous date to this date.
Please find below current output and the required output.
This needs to be dynamic. The rates are received for various currencies on daily basis.
Current Output:
Currency | Value | Date |
CAD | 11 | 1/08/2019 |
CAD | 11.5 | 2/08/2019 |
CAD | 20.9 | 5/08/2019 |
Required output:
Currency | Value | Date | New column for date to show from which date it has been picked |
CAD | 11 | 1/08/2019 | 1/08/2019 |
CAD | 11.5 | 2/08/2019 | 2/08/2019 |
CAD | 11.5 | 3/08/2019 | 2/08/2019 |
CAD | 11.5 | 4/08/2019 | 2/08/2019 |
CAD | 20.9 | 5/08/2019 | 5/08/2019 |
thank you
Regards,
Hitha Dhani
Refer qvw below if you couldn't get the desired result:
Thanks and regards,
Arthur Fong
Add a new logic(DatePicked) similar to the New column:
Thanks and regards,
Arthur Fong
Refer qvw below if you couldn't get the desired result:
Thanks and regards,
Arthur Fong
thanks a lot for the quick response 🙂 appreciate it !
Just another small bit.... is there a way i can show from which previous date the value was taken in another date column ?
Regards,
Hitha Dhani
Add a new logic(DatePicked) similar to the New column:
Thanks and regards,
Arthur Fong
Awesome! Thanks a ton again 🙂 that worked.