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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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