Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello!
I have a column with the following details. Please see table below. I just want to get "LBP_" from column Name.
Name | What I want |
LBP_101 Shady Ln_Mills_JF | 101 Shady Ln_Mills_JF |
LBP_111 Hyer St_Sands_CC | 111 Hyer St_Sands_CC |
Please help me what DAX Formula to use.
Thank you.
Solved! Go to Solution.
@juhoneyighot Well, if they are all in that format then something like this:
DAX Column =
RIGHT([Name], LEN([Name]) - 4)
@juhoneyighot Well, if they are all in that format then something like this:
DAX Column =
RIGHT([Name], LEN([Name]) - 4)
Thank you
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.