The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have a column named BinMax which format is text. I'd like to create a calculated column extracting all but the last two chracters of this string. Say, for BinMax="212", I'd like to get "2" as a return. For "1212", I'd like to get "12".
I tried:
LEFT(
[BinMax]
LEN([BinMax] - 2)
)
but got error:
When I try LEN([BinMax] - 1) it works.
What seemed so simple has already taken me hours trying to solve it. What am I missing here?
Solved! Go to Solution.
Hi @Anonymous
please try
NewColumn =
IFERROR ( LEFT ( [BinMax], LEN ( [BinMax] - 2 ) ), BLANK () )
then filter for the blanks to see which rows are causing the error
Thanks @tamerj1 , I had zeros in the column, so LEN of any string - 2 equals negative, which results in error. Thanks for opening my eyes to the other rows in the column 🙂
Hi @Anonymous
please try
NewColumn =
IFERROR ( LEFT ( [BinMax], LEN ( [BinMax] - 2 ) ), BLANK () )
then filter for the blanks to see which rows are causing the error
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
10 | |
7 |