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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
nniphadk
Frequent Visitor

How to filter text length more than 6

I have a switch statement where in 

SWITCH(TRUE, Transaction = "CREDIT" && Transaction Code = "693" && Receipt which has more than 6 characters)

 

TransactionTransaction CodeReceipt
CREDIT69319100000000000
CREDIT53417341
CREDIT53417341
CREDIT53412001
CREDIT53417341
DEBIT53412001
DEBIT53417341
DEBIT53417341
DEBIT53417341
CREDIT53412001
CREDIT53417341
CREDIT53417341
DEBIT53417341
DEBIT53417341
DEBIT53417341
DEBIT53417341
DEBIT53417341
DEBIT5342411558071
DEBIT53417341
3 REPLIES 3
KNP
Super User
Super User

Either you posted before you wanted to or there's not enough detail in this question.

What are you wanting to do?

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!
nniphadk
Frequent Visitor

How do I filter the Receipt column for 6 character lengths or more

Based on what you've told me, drop this measure into your table...

Filter6 = 
SWITCH (
    TRUE (),
    MIN ( Filter6[Transaction] ) = "CREDIT"
        && MIN ( Filter6[Transaction Code] ) = "693"
        && LEN (
            MIN ( Filter6[Receipt] )
        ) > 5, 1
)

 

All very dependent of what your end result needs to be.

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.