Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a two subjects like "${Recipient.lead.companyname[0]!""} | Efficiency meets affordability with Microsoft 365 for nonprofits" and "Efficiency meets affordability ${Recipient.lead.companyname[0]!""} | with Microsoft 365 for nonprofits". I have to remove this text "${Recipient.lead.companyname[0]!""} |" and show remaing text.
Kindly help me to achecive this.
Thanks & Regards,
Vamsi Krishna
Solved! Go to Solution.
Hi Tahreem,
Thanks for your reply. I have used replace option in transform data then my problem is solved.
Hello @Anonymous ,
one of the things that you can do is to right click on the value in power query and replace it with the value you want.
https://learn.microsoft.com/en-us/power-query/replace-values
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Proud to be a Super User! | |
Thanks for your response. Can we acheive this with any dax formula.
@Anonymous Try this DAX column:
In the screenshot for second subject in output this text "Efficiency meets affordability" is missing.
@Anonymous Try creating a column like below:
Hi Tahreem,
Thanks for your reply. I have used replace option in transform data then my problem is solved.
Hello @Anonymous ,
yes, but you should create a new column that says the following:
new column =
IF (
columnName = "${Recipient.lead.companyname[0]!""} | Efficiency meets affordability with Microsoft 365 for nonprofits",
"Efficiency meets affordability with Microsoft 365 for nonprofits",
IF (
columnName = "Efficiency meets affordability ${Recipient.lead.companyname[0]!""} | with Microsoft 365 for nonprofits",
" with Microsoft 365 for nonprofits",
columnName
)
)
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Proud to be a Super User! | |
We have many many different subjects like that. It's difficult to add each time when we get new subject to formula. Is there a way by automatically removing this piece of text "${Recipient.lead.companyname[0]!""} |".
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.