Wanted to know that if I have used a formula datetime\month(datetime\today())+2, will it denote January of 2023 in the Month of November 2022?
Announcement
Collapse
No announcement yet.
Date Time Formula - datetime\month(datetime\today())+2
Collapse
X
-
I have created a report for the sales forecast for January using this formula on the Close Date in Opportunities. It was working fine till last month and now I need to change the formula. Any alternate solution so that I do not have to edit the formula every month?
Comment
-
Have you already use the dateformat field? (or can't you use it?)
https://docs.espocrm.com/administrat...datetimeformatLast edited by esforim; 11-15-2022, 07:46 AM.
Comment
-
I am already using it.
But when we add +1 or + 2 months, it will not work if it is end of the year. Similarly if we add -1 or -2 months, it will not work in the beginning of the year
-
Ah that made sense! December coming soon.
Unfortunately I haven't delve into this issue yet so no solution or thread I'm aware of to give you some insight. You probably have to look through the formula/documents and see if there anything that potential give you a "light bulb" moment.
-
-
-
You can use our extension Custom Formulas. Here you have video which shows how to use our extension: https://www.youtube.com/watch?v=9PMxd2A5DO4
Here you have specific formula which allow to add days, weeks, months, years. https://docs.dubas.pro/extensions/cu...las/#dubasdate
Comment
-
dreginald,
It is very strange that the formula I proposed does not work for you. I just tested it in my test instance, and the date is set correctly.
Could you show on the screenshots exactly how your formula looks like? As well as the settings of the report itself. This will make it easier to help you with this problem.
- Likes 1
Comment
-
@iazovic
I tried to create a report in Proposal Stage with Close date after two months and used complex expression using formual greater than (datetime\month(datetime\today())+ 2)
In October 2022, the report showed the opportunities with Close Date of December 2022.
But in November, it should show the Opportunities with Close Date of Jan 2023 and above. But it is showing NIL.
I changed the formula as you suggested and it is still showing the same and I have opportunities closing in Jan in Proposal stage.
Screenshot attached1 Photo
Comment
-
hi,
try this :
PHP Code:datetime\addMonths(datetime\today(), 2) % 12;
you can try too with : complex-expression
Comment
Comment