I have a search criteria table that I want to use to do a search for multiple conditions against in my main table
Using the below formula works well for a single text search criteria
=FIRSTNONBLANK(FILTER(VALUES(
'SearchC'[Search Criteria 1])
,SEARCH('SearchC'[Search Criteria 1],'Data3-Work Order List'[Description],1,0)),1)
However Im stuck when trying to add another optional search criteria in another column of the SearchC Table ie: Search Criteria 2 as this formula doesn’t work when there are blank rows in the table
How would I be able to add ie: Looks for text containing Search Criteria 1 & Search Criteria 2?
Are you able to help point me in the right direction?
Hi
If I understand correctly you want to search keywords within the dataset of the model. So from the report level a user can search “DAX” in a columns that has DAX and it filters from the report level everything for DAX.
I have done a similar thing - but here I used a custom visuals - Text Filters.
My main table below, and i’m doing multiple searches based on the top section criteria. Based on this the table will filter down.
I am aware of text filters Thanks but what I am looking for is a search for multiple criteria using dax in the same field column ie: POWER BI AND DAX for example. User input is being passed through from poweraps and isn’t the issue.