Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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..
Solved! Go to Solution.
Try replacing with this one
FILTER (
'LN',
SEARCH ( "Objektbegehung", 'LN'[Leistungsbeschreibung],, 0 ) > 0
)
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
Try replacing with this one
FILTER (
'LN',
SEARCH ( "Objektbegehung", 'LN'[Leistungsbeschreibung],, 0 ) > 0
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 101 | |
| 39 | |
| 29 | |
| 29 |