Share via

SharePoint Calculated Column Formula Issues

Anonymous
2023-02-07T15:20:50+00:00

Hey all. I am attempted to do a calculated column based on a data column called "Resolved Date". The first formula is working but when I try to add an ISBLANK statement at the beggining is breaks the formula. I think I am missing a parathesis or need to add one.

=IF(INT(([Date Resolved]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)=0,52,INT(([Date Resolved]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)) --- This works but I want to add isblank at the beginning IF(ISBLANK([Date Resolved]),"",INT(([Date Resolved]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)=0,52,INT(([Date Resovled]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)) -- This is the code that is giving me an error. I think I am missing a paraethissAny help would be very appreciated!!!

Microsoft 365 and Office | SharePoint | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Anonymous
    2023-02-07T20:33:57+00:00

    Dear David,

    Thanks for your updates and kindness.

    I appreciate it as it may help other community members who are experiencing the similar issues.

    Welcome to post a new thread on our forum at your convenience if you encounter any issues.

    Thanks for your effort and time!

    Sincerely,

    Cliff | Microsoft Community Moderator

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2023-02-07T16:13:50+00:00

    IF(ISBLANK([Date Resolved]),"",IF(INT(([Date Resolved]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)=0,52,INT(([Date Resolved]-DATE(YEAR([Date Resolved]),1,1)+(TEXT(WEEKDAY(DATE(YEAR([Date Resolved]),1,1)-1),”d”)))/7)))

    Works if anyone has this issue

    Was this answer helpful?

    0 comments No comments