Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am struggling a bit with this:
I have a column which should have only 8 numeric values per row.
E.g.
72636783
27289911
28889992
Unfortunately, there are some errors. Some numbers have more or less characters, and maybe there are even some letters present.
How do I identify all wrongs?
I tried looking at the LEN function, which should give me the number of characters. However, this gives me an error.
Quick measure:
Solved! Go to Solution.
Hi,
Have you tried using LEN as an added column instead?
It should work as a new column instead of a measure.
Afterwards I would then add another new column:
Less than 8 = if ( [length] < 8, 1,0 )
This worked!
Thanks.
Do you have an idea about how to identificate letters (a,b,c,d..) in the RelKVKNr column?
Hi,
I would refer to this video: https://www.youtube.com/watch?v=9Pac_0etueQ if you wanted to split them out by type of string.
Let me know if I've helped by giving me a thumbs up or accepting my answer as a solution!
Hi,
Have you tried using LEN as an added column instead?
It should work as a new column instead of a measure.
Afterwards I would then add another new column:
Less than 8 = if ( [length] < 8, 1,0 )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
49 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |