March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
@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
)
@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
)
Thank you Sparta!
that is the answer i needed, thank you!
@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 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |