Sharepoint Validation for Multiple Actions and Multiple Target Dates

Dancer 0 Reputation points
2024-05-21T12:14:47.6533333+00:00

I have a list that comprising of 6 Action columns that when they have a text entry a corresponding Target column then requires a mandatory Target date.

These work for the Action and Target but I can't get the formula for more than once action.

=AND(LEN([Action])>0,(NOT(ISBLANK([Target]))))

=AND(NOT(ISBLANK([Action])), NOT(ISBLANK([Target])))

I have tried =IF(NOT(ISBLANK([Action])),NOT(ISBLANK([Target])),

IF(NOT(ISBLANK([Action1])),NOT(ISBLANK([Target1]))

))

and

=AND(NOT(ISBLANK([Action])), NOT(ISBLANK([Target])),AND(OR(NOT(ISBLANK([Action1])),NOT(ISBLANK([Target1])) )))

Any help?

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
1,555 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,922 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Dancer 0 Reputation points
    2024-05-21T16:54:04.4266667+00:00

    This worked =IF(ISBLANK(Action1),TRUE,NOT(ISBLANK(Target1)))=IF(ISBLANK(Action2),TRUE,NOT(ISBLANK(Target2)))


  2. AllenXu-MSFT 16,961 Reputation points Microsoft Vendor
    2024-05-22T01:46:19.7+00:00

    [SharePoint Validation for Multiple Actions and Multiple Target Dates]

    Issue Symptom:

    I have a list that comprising of 6 Action columns that when they have a text entry a corresponding Target column then requires a mandatory Target date.

    These work for the Action and Target but I can't get the formula for more than once action.

    Current status:

    Solved by this formula:

    =IF(ISBLANK(Action1),TRUE,NOT(ISBLANK(Target1)))=IF(ISBLANK(Action2),TRUE,NOT(ISBLANK(Target2)))


    You could click the "Accept Answer" button for this summary to close this thread, and this can make it easier for other community members to see the useful information.

    0 comments No comments