• Resolved ajaysingh121

    (@ajaysingh121)


    how to calculate the date like 12 Weeks From Today

    and the resulat show laike day,mont, date and year: Sunday, September 17, 2023

    • This topic was modified 2 years, 11 months ago by ajaysingh121.
    • This topic was modified 2 years, 11 months ago by ajaysingh121.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @ajaysingh121

    Thank you very much for using our plugin.

    You can implement the equation as follows:

    
    (function(){
    var d = DATETIMESUM(TODAY(), 'dd/mm/yyyy', 7*12, 'd');
    return CONCATENATE(WEEKDAYNAME(d),', ', MONTHNAME(d), ' ', DAY(d), ', ', YEAR(d));
    })()

    Best regards.

    Thread Starter ajaysingh121

    (@ajaysingh121)

    Thank you for your respons quickily

    in the equation higlighated part want to hide how can we do

    Plugin Author codepeople

    (@codepeople)

    Hello @ajaysingh121

    The equation does not include the “day(s)” text. I’m pretty sure you entered it as the “suffix” attribute in the calculated field settings. Pleases, let this attribute empty.

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘date calculation’ is closed to new replies.