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
Hi all,
I'm adding a custom column where values are based on conditional statement.
= Table.AddColumn( #"Added Index",
"Custom",
each
if Text.Contains(#"Added Index"{[Index] - 1}[INPUT],"ABC") then
"NEW TEXT"
else
[INPUT]
)
The answer in new column is correct, but in first row appears "Error" below since is doing {[Index] -1} for first element
Expression.Error: The index cannot be negative.
Details:
Value=[Table]
Index=-1
I added a "try otherwise.." before the "if" and output still shows Error for first element. How to handle this error? Thanks
Solved! Go to Solution.
Hi , @cgkas
You just need to update the "Added Index " steps to from 1 to ..., like this:(not start from 0)
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @cgkas
You just need to update the "Added Index " steps to from 1 to ..., like this:(not start from 0)
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@cgkas You could do a Replace errors step and plug in whatever you did for your otherwise.
Thanks for your answer. I was wondering if is possible to handle the error withour adding extra step.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |