Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
BachFel
Helper II
Helper II

Search function

Hi,

 

I have the following formula:

 

Datum der Besichtigung = CALCULATE(

MIN('LN'[Zeitpunkt der Begehung]);FILTER(KontElemente;KontElemente[MandantID]=2);FILTER('LN';'LN'[Leistungsbeschreibung]=("Objektbegehung"));FILTER('LN';'LN'[KontElementID]=EARLIER(KontElemente[KontElementID])))

 

is there a possiblity to replace the bold part with the search function?

I want to find the word "Objektbegehung" which is part of the free text in LN[Lesitungsbeschreibung], so it can stand at the beginning, in the middle of a sentence or anywhere else..

1 ACCEPTED SOLUTION

@BachFel

 

Try replacing with this one

 

FILTER (
    'LN',
    SEARCH ( "Objektbegehung", 'LN'[Leistungsbeschreibung],, 0 ) > 0
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

I would load your table into a temp table and then use ADDCOLUMNS to add a column in which you return true if SEARCH finds the value you are looking for and then you can filter on that.

 

Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@BachFel

 

Try replacing with this one

 

FILTER (
    'LN',
    SEARCH ( "Objektbegehung", 'LN'[Leistungsbeschreibung],, 0 ) > 0
)

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.