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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Ericwhv
Helper II
Helper II

Question about data modeling

I could like to create a new column to determine that is our target data or not

if that is our target data, the data showing in the field will be...

"U" or "N" + ABCDEF + 01/02/03/04

which is 7 letter + 2 digit of number

 

Example as below

UHKGDEL01

NAMSLHR02

 

so, could anyone teach me how to build a formula in power BI to determine this is our target or not?
if(left(field name,1)= OR("N", "U"), etc.......

something like that?
Thank you.

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@Ericwhv you mean like this? (This is a calculated column):

 

Check For Target = 
IF(
    LEFT('Table'[Input], 1) IN {"U", "N"}
        && RIGHT('Table'[Input], 2) IN {"01", "02", "03", "04"},
    TRUE,
    FALSE
)

 

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

@Ericwhv you mean like this? (This is a calculated column):

 

Check For Target = 
IF(
    LEFT('Table'[Input], 1) IN {"U", "N"}
        && RIGHT('Table'[Input], 2) IN {"01", "02", "03", "04"},
    TRUE,
    FALSE
)

 

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Thank you Sparta!

that is the answer i needed, thank you!

SpartaBI
Community Champion
Community Champion

@Ericwhv my pleasure 🙂
Hey, check out my showcase report - got some high level stuff there. Sure you will find there a lot of cool ideas. 
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543
Give it a thumbs up over there if you liked it 🙂

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

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.