Forum Discussion
AJAyr
3 years agoNew Member
extract 6-7 digit code from a column into a new column
Hi all,
I am needing help to extract 6-7 alphanumeric digit code from a column where there are multiple codes in a row without any specific format.I need to create new column for the extracted code.Would you be able to help me.
Thanks in advance
4 Replies
- Thennarasu_R
Responsive Resident
Hi AJAyr
You could use this Dax .
Column =Left(Column Name , 7)
If you want left side first 7 digits you should use Left Function.
Column = Right (Column Name , 7)
If you want Right side first 7 digits you should use Right Function.
Thanks,
Thennarasu