Skip to main content

Where to find the classic Advanced Find after Microsoft Update

If you used to go to Advanced Settings and see our trusty Advanced Find on the command bar, and suddenly it has disappeared after a Microsoft update, do not worry!

Microsoft has again moved the old Advanced Find or I would even say hidden it, to drive us towards the Dataverse search.

I encountered this in Dynamics 365 Customer Service and Field Service, so I'm not entirely sure it would affect Sales, Marketing and the rest. Highly likely all of them.

Where to find the old / classic Advanced Find

Click on the settings wheel and go to Advanced Settings

 

 

Click on the Dataverse search bar

 

 

and then click on 'Search for rows in a table using advanced filters'.

This will bring up a side panel, with the 'Switch to Classic' button

 

Clicking this will bring you to the old / classic Advanced Find.

 

What's different now is that it opens up as another tab in the browser, unlike previously where it would be a pop-up. So you will be able to bookmark and save this for next time!

Navigate to Advanced Find directly through URL

If you'd like, you can also utilise the below URL, just replace with your context values:

https://<your-dynamics-url>/main.aspx?appid=<app-id-you-get-when-you-click-advanced-settings>&pagetype=AdvancedFind

Hope this helps!


















Popular Posts

How to pass the IDs of selected rows to Power Automate

This article is for you if: You would like to select one or more records from data grid or subgrid Get the IDs of the selected rows Pass these IDs to Power Automate Flow To do this, you will require the following components: Power Automate Flow with Http trigger XrmToolBox: Ribbon Workbench (RWB) tool a JavaScript Step 1: Create a Power Automate Flow We will be triggering a flow using HTTP request when the button is clicked in our Model Driven App. For your trigger, select ‘When a HTTP request is received’. We will need a Request Body JSON Schema. This is how the data (row IDs) will be passed from the JavaScript to power automate flow. Paste the following Schema into the box: json { "type": "object", "properties": { "TimesheetIds": { "type": "array", "items": { "type": "string" } } } }...