Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!