Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a field called "Mail Back Type" that resides in a table called "v_rp005_rejectreport" and within this field there could be a varying number of code values stored (see screenshot). Is it possible using DAX to take those code values and convert them into descriptions, separated by commas? The key of what each code represents is also provided below.
I tried doing this myself but was getting hung up on the situations where multiple codes are present in the "Mail Back Type" field.
MLBR01 = Signature Not Matching With Name
MLBR02 = Primary Insured
MLBR03 = Missing Required Information
MLBR04 = Need Of Notarized Document
MLBR05 = Account Number Required
MLBR06 = Coverage Amount Required
MLBR07 = Multiple Coverage Amounts Selected
MLBR08 = Credit Card Number Required
MLBR09 = Signature Required
@krichmond , I think you have to use substitute multiple times in DAX
https://learn.microsoft.com/en-us/dax/substitute-function-dax
example
substitute(substitute([col1],"MLBR01","Signature Not Matching With Name"),"MLBR02","Primary Insured")
User | Count |
---|---|
123 | |
76 | |
63 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |