Conditionally filter lookup column in SharePoint using specific criteria in 2 steps

Conditionally filter lookup column in SharePoint using specific criteria in 2 steps

No comments

Loading

Conditionally filter lookup column in SharePoint using specific criteria is very essential for business needs. In this article, we will learn how to conditionally filter a lookup column in SharePoint using specific criteria.

Filtering the lookup column is not possible using JSON (at least as of now Oct 2022), however, we can filter the lookup column value using customizing the SharePoint list form in PowerApps but many clients do not prefer to customize the form in PowerApps, rather they would be happy if we could provide the solution with the out of the box solutions available. Thinking of this, here we will show you a little workaround for how we could filter a lookup column value in SharePoint.

Use Case: SharePoint filter lookup dropdown (Conditionally filter lookup column in SharePoint)

Let’s say we have a “Project Status” list that will maintain all ongoing project status, this list has the below columns:

  • ProjectName – Lookup type column (Title column from another list ‘Project List’)
  • Project Status – Text
  • Color – Text

Note:

  • Here project status and color column are not relevant, just added them to make the list a little more realistic, generally, these should have been a type of choice column.
Conditionally filter lookup column - Filter lookup column in SharePoint Online list
Filter lookup column in SharePoint Online list

Let’s say here the use case is certain types of value shouldn’t be displayed here in this lookup dropdown list, for this example, we will not display “Java” in this dropdown list, however, the real-time requirement would be different but the logic would be the same.

Filter lookup column in SharePoint (SharePoint filter lookup dropdown)

So, how to filter the lookup column in SharePoint? The answer is – we cannot filter the lookup column from the main list (calling list) either using the JSON or out-of-the-box ways, for this filter, we need to handle it in the source list where the data is coming from.

Now, let’s go to the source list for this lookup column – ‘Project List’. Initially, this list has only the ‘Title’ column where we had all projects entry. Now, let’s add two more new columns:

  • ProjectStatus – Type Choice (Values: Active|Inactive)
  • ActiveProject – Type calculated, and the value would be based on the “ProjectStatus” column value.

ActiveProject calculated column formula:


=IF(ProjectStatus="Active",Title,"")

SharePoint filter lookup dropdown – list columns definition

Below is the columns definition:

SharePoint filter lookup dropdown - list columns definition
SharePoint filter lookup dropdown – list columns definition

SharePoint filter lookup dropdown: Calculated column formula

Use the calculated formula below:

SharePoint filter lookup dropdown - calculated column formula
SharePoint filter lookup dropdown – calculated column formula

Notes:

  • The “ActiveProject” calculated column will only have a value when the “ProjectStatus” is set as “Active” against the “Title” column otherwise it will be blank.
  • Ensure the “Single line of Text” is selected from the “the data type returned from this formula is” section – this is the default selection.

A final look at the “Project list” data.

The active project data look like the below:

SharePoint filter lookup dropdown based on the calculated column value
SharePoint filter lookup dropdown based on the calculated column value

Now, let’s go to the main list ‘Project Status’ to change the lookup column reference from the “Title” column to the “ActiveProject” column.

SharePoint filter lookup dropdown value based on the calculated column
SharePoint filter lookup dropdown value based on the calculated column

After changing the column reference from “Title” to “ActiveProject”, if we click on the add new item “+New” button, we will not see “Java” in the “ProjectName” lookup dropdown list because in the lookup reference source list “Project List” the Java has been set as “Inactive”.

Filter lookup column dropdown value in SharePoint Online list
Filter lookup column dropdown value in SharePoint Online list

By now, we have learned how to filter the lookup column dropdown in SharePoint, however, still we will have problems while we deal with old data or already saved data.

How do we retain old records in the filter lookup dropdown technique?

In the above screenshot, we see there are values such as “SharePoint”, and “DotNet” in the “ProjectName” column.

Now, let’s make the “DotNet” as “Inactive” in the lookup reference source list.

Filter lookup column dropdown value in SharePoint Online list using Active and Inactive technique
Filter lookup column dropdown value in SharePoint Online list using Active and Inactive technique

Then, we will see that the “ProjectName” column value is empty wherever it was “DotNet”.

Filter lookup column dropdown value - retain old records in Lookup column filter
Filter lookup column dropdown value – retain old records in Lookup column filter

This is the default behavior of SharePoint – as it maintains a parent-child relationship.

Solution: How to overcome this issue?

Create another column single line of Text column (for example, ProjectName2) in the main list (Project Status list).

Hide this new “ProjectName2” new column in the Add/Edit form using the below formula:


=if([$ID], 'true', 'false')

Refer to our previous article on how to hide columns conditionally in a SharePoint Online list using JSON – Conditionally show or hide columns in a SharePoint list.

Create a simple Power Automate – on Add/Edit list item event, which will update the new “ProjectName2” text column with the value of the “ProjectName” lookup column.

Hide the “ProjectName” lookup column in the view and display the new “ProjectName2” text column in the view.

Using this technique, the “ProjectName2” text column always will have a copy of the “ProjectName” lookup column value, so even though the “ProjectName” lookup column loses the reference value, the other “ProjectName2” text column will retain it.

Summary: Filter lookup column SharePoint list

Thus, in this article, we have learned how to filter the lookup column dropdown value.

See Also: SharePoint Online tutorial

You may also like the below SharePoint Online tutorials:

About Post Author

Do you have a better solution or question on this topic? Please leave a comment