Forum Discussion
Anonymous
7 years agoNot applicable
remove first character if it is a 2
I would like to remove the first character if it is a 2. Thanks in advance
- 7 years ago
Anonymous Try this as a New Column
NewData = IF(LEFT([Data],1)="2",MID([Data],2,LEN([Data])-1),[Data])
PattemManohar
Community Champion
7 years agoAnonymous Try this as a New Column
NewData = IF(LEFT([Data],1)="2",MID([Data],2,LEN([Data])-1),[Data])
- Anonymous7 years agoNot applicable
Worked perfect. Thanks for your help
- sdhn5 years ago
Responsive Resident
I have table called Dept. I have one column called Departments
Deaprtments values started from ABC_
I want to remove ABC_ from all department values.
Do I need to create new mneasure on Departments or New Column? I tried both but not successful yet. Thanks
Thanks