hello,
I have a dataset which contains data for different year, month, day columns
I would like to get the changed data since one date to another
example of data:
company code state planned moisture year month day
--------------------------------------------------------------------------------------------------------------------
94925 code1 complete 22.9 11.999 2023 05 20
94925 code1 complete 22.9 12 2023 05 21
94925 code1 complete 22.9 12 2023 05 22
94925 code1 delete 22.9 12 2023 05 23
...
87654 code2 complete 18 7 2023 05 20
87654 code2 complete 18 9 2023 05 21
87654 code2 planned 18 9 2023 05 22
87654 code2 planned 18 9 2023 05 23
...
The unique columns are company and code
There are thousands of rows which are captured into each year, month and day as you see above...
I would like to find-out which rows have changed (Including what has changed) say from 2023-05-20 to 2023-05-25
Hope you see what I mean.
Thank you