We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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 remove that verbage. However, not all of the record types are the same. So I basically need a formula that will remove just "Service Onboarding" from the record type name.
I know you can do this in excel, but I'm having trouble finding the same functionality in Power BI.
Solved! Go to Solution.
@SaganBigRedDog in power query do a replace values (in the transform tab) with nothing
Proud to be a Super User!
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
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
Why can't you just use "Replace values"? Meaning why doesn't this work? It would seem simple enough you would think like Excel values.
@SaganBigRedDog in power query do a replace values (in the transform tab) with nothing
Proud to be a Super User!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 37 | |
| 32 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 66 | |
| 66 | |
| 39 | |
| 34 | |
| 25 |