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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Franny_Spanny
Frequent Visitor

If Column contains ANY 3 letters and a dash (ABC-, XYZ- etc) then "OKAY", else "ERROR"

Hi all, 

 

I've spent hours searching for an answer, and I have some ideas but nothing coming to fruition! Unfortunately I'm unable to share data, but my column looks like this:

 

NAME

1110009988

88888-GGGG-DDDD-

AGL-0001

2344778678

5278-837HJ

DHL-88747474

BIG-XX87655

JIB-129499

37HHU7733

 

I am trying to create a custom column that looks at my list, and anything that begins with ANY 3 letters plus a dash (???-) gets an "OKAY" but any other format gets "ERROR". 

 

I have tried IF StartsWith, IF Text.Contains, conditional columns using 'contains' and 'does not contain' but I'm just getting errors for everything. I've seen conflicting info on whether Wildcards work in PowerQuery, for example, the below formula gave me all errors:

 

if Text.Contains("***-", [Name]) then "OKAY" else "ERROR")

 

I have stumbled upon the use of R here but being on a work laptop I can't install anything without our IT and they can take a long time to respond so thought I'd ask the community for ideas.

 

Sorry for lack of fancy formatting, I'm new to the forum and not sure how it all works, but hopefully the above explains what I'm looking to do.

 

2 ACCEPTED SOLUTIONS
rohit_singh
Solution Sage
Solution Sage

Hi @Franny_Spanny ,

This does not meet your requirements 100% but you could try something like this :

rohit_singh_0-1661435341429.png

Check if the 4th position has a '-' and if yes then assign 'Okay' else 'Error'


= Table.AddColumn(#"Changed Type", "Custom", each if Text.Middle([NAME], 3, 1) = "-" then "Okay" else "Error")

Kind regards,

Rohit


Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 

 

View solution in original post

rsbin
Super User
Super User

@Franny_Spanny ,

I believe I have worked something out using DAX instead of PQ.
May not be the cleanest solution, but I believe it accounts for all of your scenarios:

NAME_TEST = SWITCH(
                TRUE(),
                MID( [Name], 4, 1 ) <> "-", "ERROR",
                MID( [NAME], 3, 1) IN  { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                MID( [NAME], 2, 1) IN  { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                LEFT( [NAME] , 1 ) IN { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                 "OKAY" )

NAMENAME_TEST

1110009988 ERROR
88888-GGGG-DDDD- ERROR
AGL-0001 OKAY
2344778678 ERROR
5278-837HJ ERROR
DHL-88747474 OKAY
BIG-XX87655 OKAY
JIB-129499 OKAY
37HHU7733 ERROR

I haven't checked Rohit's solution, but feel free to work with whichever one is best for you.

View solution in original post

3 REPLIES 3
rsbin
Super User
Super User

@Franny_Spanny ,

I believe I have worked something out using DAX instead of PQ.
May not be the cleanest solution, but I believe it accounts for all of your scenarios:

NAME_TEST = SWITCH(
                TRUE(),
                MID( [Name], 4, 1 ) <> "-", "ERROR",
                MID( [NAME], 3, 1) IN  { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                MID( [NAME], 2, 1) IN  { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                LEFT( [NAME] , 1 ) IN { "1","2","3","4","5","6","7","8","9","0" }, "ERROR",
                 "OKAY" )

NAMENAME_TEST

1110009988 ERROR
88888-GGGG-DDDD- ERROR
AGL-0001 OKAY
2344778678 ERROR
5278-837HJ ERROR
DHL-88747474 OKAY
BIG-XX87655 OKAY
JIB-129499 OKAY
37HHU7733 ERROR

I haven't checked Rohit's solution, but feel free to work with whichever one is best for you.

rohit_singh
Solution Sage
Solution Sage

Hi @Franny_Spanny ,

This does not meet your requirements 100% but you could try something like this :

rohit_singh_0-1661435341429.png

Check if the 4th position has a '-' and if yes then assign 'Okay' else 'Error'


= Table.AddColumn(#"Changed Type", "Custom", each if Text.Middle([NAME], 3, 1) = "-" then "Okay" else "Error")

Kind regards,

Rohit


Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 

 

Thanks @rohit_singh - this worked well! I found some erroneous data in the column so had to do some other fixing but this was perfect for the original question! 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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