Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have the following in Qlikview
// Test records:
if(wildmatch(lower(FIRST_NAME),'*dummy*','*regression*',' test*','test *','*condition*','*invalid*')>0 or wildmatch(lower(LAST_NAME),'*dummy*','*regression*',' test*','test *','*condition*','*invalid*')>0
or wildmatch(lower(ADDRESS1),'*dummy*','*regression*','*condition*','*invalid*')>0 or wildmatch(lower(EMAIL_ADDRESS),'*dummy*','*regression*',' test*','test *','*condition*','*invalid*')>0
or wildmatch(lower(CITY),'*dummy*','*regression*',' test*','test *','*condition*','*invalid*')>0
,'Test Records','Clients') as Status,
How would I go about replicating that in Powerbi, does a conditional column accept wildcards?
Thanks
C
Solved! Go to Solution.
In place of wildcard try to use FIND(), SEARCH(), CONTAINSSTRING(), CONTAINSSTRINGEXACT().
The Qlik function needs to be rewritten.
Proud to be a Super User!
Hi @jak8282 ,
Based on your description, I'd like to suggest you use FIND(), SEARCH(), CONTAINSSTRING(), CONTAINSSTRINGEXACT().
Here is the functions for text.
1. Text connection functions :
CONCATENATE(<text1>, <text2>)
CONCATENATEX(<table>, <expression>, [delimiter])
COMBINEVALUES(<delimiter>, <expression>, <expression>[, <expression>]…)
DISTINCT(SELECTCOLUMNS(DimDate, "Month", COMBINEVALUES(",", [MonthName], [CalendarYear])))
2. Text search functions :
FIND(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]]) SEARCH(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]]) CONTAINSSTRING(<within_text>, <find_text>) CONTAINSSTRINGEXACT(<within_text>, <find_text>)
3. Formatting text functions :
FIXED(<number>, <decimals>, <no_commas>) FORMAT(<value>, <format_string>)
4. Intercepting text functions :
LEFT(<text>, <num_chars>) RIGHT(<text>, <num_chars>) MID(<text>, <start_num>, <num_chars>)
5. Replace text :
REPLACE(<old_text>, <start_num>, <num_chars>, <new_text>) SUBSTITUTE(<text>, <old_text>, <new_text>, <instance_num>)
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
Proud to be a Super User!
Thanks Pratuashamal , can you use wildcards in those functions?
In place of wildcard try to use FIND(), SEARCH(), CONTAINSSTRING(), CONTAINSSTRINGEXACT().
The Qlik function needs to be rewritten.
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 44 |