Forum Discussion
KristofferAJ
Helper III
4 years agoConvert a specific excel formula to excel
Hi
I have a formula I use a lot in my excel analysis, but I want to built into powerBi as a calculated column:
=iferror(MID(A1,FIND("TCN",A1),11),A1)
Can I create a DAX command which does the same?
Thanks
Kristoffer
=iferror(MID([colnum name],FIND("TCN",[colnum name]),11),[colnum name])
2 Replies
- vapid128
Solution Specialist
=iferror(MID([colnum name],FIND("TCN",[colnum name]),11),[colnum name])
- KristofferAJ
Helper III
Hah this was Simple! - was missing a minor thing - THANKS!