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.
Hi the community
I have one cell like this
i want create new column on my power bi with the reference after MDS = , this reference always contains 6 characters wich dax formule, which dax formula I could use to get this result. Thank you in advance for your help
Solved! Go to Solution.
Hi. @Cednok
In PowerQuery, you can try the feature "Extract".
Add columns->exact->Text Between Delimiters
In Dax, you can try calculated column as below:
Result =
VAR location =
SEARCH ( "=", 'Table'[Text],, 0 )
RETURN
MID ( 'Table'[Text], location + 1, 6 )
Best Regards,
Community Support Team _ Eason
Hi. @Cednok
In PowerQuery, you can try the feature "Extract".
Add columns->exact->Text Between Delimiters
In Dax, you can try calculated column as below:
Result =
VAR location =
SEARCH ( "=", 'Table'[Text],, 0 )
RETURN
MID ( 'Table'[Text], location + 1, 6 )
Best Regards,
Community Support Team _ Eason
@Cednok , Split in Power Query by "MDS = " into 2 column -https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/
After in second column use the formula Text.Start([col2], 6)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
65 | |
45 | |
39 | |
31 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |