Forum Discussion
Maheshkaka
4 years agoNew Member
Split values
Hi i have a calculated value i.e 1:2356 i want to show only right value of ":".
- 4 years ago
Use any of the following where Data is the column name
= Text.AfterDelimiter([Data],":") = Text.Split([Data],":"){1}
Vijay_A_Verma
4 years agoMost Valuable Professional
Use any of the following where Data is the column name
= Text.AfterDelimiter([Data],":")
= Text.Split([Data],":"){1}