Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I only need number in the end.
e.g. 002
pls not hoping using Right/Left function since values have sometime 3 digits or 4 digits dynamically.
Solved! Go to Solution.
Hi @Anonymous
You can use formula like
The pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi @Anonymous
Sample Table:
You could do this by finding the position of the "_"
NumberSuffix =
VAR text1 = Pos[Pos]
VAR pos = SEARCH("_", text1, , -1)
RETURN
MID(text1, pos + 1, LEN(text1) - pos)Sample Output:
If Resolved, Mark as Solution to guide Others!
Hi @Anonymous
Sample Table:
You could do this by finding the position of the "_"
NumberSuffix =
VAR text1 = Pos[Pos]
VAR pos = SEARCH("_", text1, , -1)
RETURN
MID(text1, pos + 1, LEN(text1) - pos)Sample Output:
If Resolved, Mark as Solution to guide Others!
Hi @Anonymous
You can use formula like
The pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.