Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi i have a calculated value i.e 1:2356 i want to show only right value of ":".
Solved! Go to Solution.
Use any of the following where Data is the column name
= Text.AfterDelimiter([Data],":")
= Text.Split([Data],":"){1}
Use any of the following where Data is the column name
= Text.AfterDelimiter([Data],":")
= Text.Split([Data],":"){1}