TSheward_SGW Posted May 26, 2017 Posted May 26, 2017 Hello All, We managed to create a Counter List widget to show the number of requests updated this week, the code for which is below: h_datelastmodified >= curdate() - INTERVAL DAYOFWEEK(curdate()) -1 DAY Does anyone know how to adjust it to show the number of requests updated this month? Many thanks, Tom
Guest Posted May 26, 2017 Posted May 26, 2017 Hi @TSheward_SGW I believe the below should return everything that has been modified from (and including) the first day of the current month: h_datelastmodified >= LAST_DAY(NOW() - INTERVAL 1 MONTH) + INTERVAL 1 DAY Can you give it a try and see if that works? Kind Regards Bob
TSheward_SGW Posted May 31, 2017 Author Posted May 31, 2017 Hello Bob, Many thanks for your help with this, I believe this is now working as expected- much appreciated. Kind regards, Tom
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now