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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
SudhanshuD4512
Frequent Visitor

Use Wildcard Operator

Column
BXC1234
BXC77882
ABCGDEE
DFGUYSH
BXCIUYH

 

Suppose I have this column to filter such that I want only values start from BXC. How to achieve in paginated report. I am not using query but using existing semantic model

1 ACCEPTED SOLUTION
123abc
Community Champion
Community Champion

There are many ways to do this, pleaes try following:

 

1:

Using LIKE with Wildcards

  1. Add a filter to your dataset or tablix

  2. Set the filter expression to your column name

  3. Set the operator to like

  4. Set the value to: BXC%

Expression: [YourColumnName]
Operator: Like
Value: BXC%

 

2:

Using LEFT Function

    1. Add a filter to your dataset or tablix

    2. Set the filter expression to:

      text
      =LEFT(Fields!YourColumnName.Value, 3)
    3. Set the operator to =

    4. Set the value to: BXC

3:

Using InStr Function

For more complex pattern matching:

text
Expression: =InStr(Fields!YourColumnName.Value, "BXC")
Operator: =
Value: 1

This ensures "BXC" appears at the beginning (position 1).

Steps to Implement:

  1. Right-click on your dataset/tablix → Properties

  2. Go to the Filters tab

  3. Click Add

  4. Configure the filter using one of the methods above

  5. Click OK

The wildcard % in the LIKE operator matches any sequence of characters, so BXC%  will match:

  • BXC1234

  • BXC77882

  • BXCIUYH

  • ABCGDEE (doesn't start with BXC)

  • DFGUYSH (doesn't start with BXC)

Note: The exact filter dialog may vary slightly depending on whether you're filtering at the dataset level or the tablix level, but the expression syntax remains the same.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

View solution in original post

4 REPLIES 4
v-pgoloju
Community Support
Community Support

Hi @SudhanshuD4512,

 

Just following up to see if the Response provided by community members were helpful in addressing the issue. if the issue still persists Feel free to reach out if you need any further clarification or assistance.

 

Best regards,
Prasanna Kumar

v-pgoloju
Community Support
Community Support

Hi @SudhanshuD4512,

 

Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to @grazitti_sapna and @123abc  for prompt and helpful responses.

Just following up to see if the Response provided by community members were helpful in addressing the issue. if the issue still persists Feel free to reach out if you need any further clarification or assistance.

 

Best regards,
Prasanna Kumar

 

grazitti_sapna
Super User
Super User

Hi @SudhanshuD4512 ,

The best way to achieve is via * operator 
You can configured the wildcard filter and add expression as your columnnB, operator : like and value: type BXC*


🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.

💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.

🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.

🔗 Curious to explore more? [Discover here].

Let’s keep building smarter solutions together!

123abc
Community Champion
Community Champion

There are many ways to do this, pleaes try following:

 

1:

Using LIKE with Wildcards

  1. Add a filter to your dataset or tablix

  2. Set the filter expression to your column name

  3. Set the operator to like

  4. Set the value to: BXC%

Expression: [YourColumnName]
Operator: Like
Value: BXC%

 

2:

Using LEFT Function

    1. Add a filter to your dataset or tablix

    2. Set the filter expression to:

      text
      =LEFT(Fields!YourColumnName.Value, 3)
    3. Set the operator to =

    4. Set the value to: BXC

3:

Using InStr Function

For more complex pattern matching:

text
Expression: =InStr(Fields!YourColumnName.Value, "BXC")
Operator: =
Value: 1

This ensures "BXC" appears at the beginning (position 1).

Steps to Implement:

  1. Right-click on your dataset/tablix → Properties

  2. Go to the Filters tab

  3. Click Add

  4. Configure the filter using one of the methods above

  5. Click OK

The wildcard % in the LIKE operator matches any sequence of characters, so BXC%  will match:

  • BXC1234

  • BXC77882

  • BXCIUYH

  • ABCGDEE (doesn't start with BXC)

  • DFGUYSH (doesn't start with BXC)

Note: The exact filter dialog may vary slightly depending on whether you're filtering at the dataset level or the tablix level, but the expression syntax remains the same.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.