Forum Discussion
SaganBigRedDog
9 years agoHelper I
Remove same text within a column
I think I'm just having a hard time wording what I'm trying to do. We have record types that all start with "Service Onboarding" but on my visualizations I think this is redundant so I would like to...
- 9 years ago
- 9 years ago
Two DAX expression which can acheive this requirement for you reference.
Column = REPLACE(Table1[RecordType],1,19,"")Column 2 = MID(Table1[RecordType],20,LEN(Table1[RecordType])-19)
Regards,
Charlie Liao
vanessafvg
9 years agoCommunity Champion