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
Hi BI Gurus
i have a column say "Node Name" which has multiple words(Ex: PRIVATE DEBT AND LOAN,DIRECTLY HELD INVESTMENTS etc) retrieved thru Direct query.
i want to change it to Capitalize each word Private Debt And Loan, Directly Held Investments
i have tried below and it gives error that the source should be converted to import mode before using it
1.Captilize each word in power query
2.m code Text.Proper(Node Name)
is there a way to achieve this in DAX .. Please pass the DAX sample if available when Direct query is used
Thanks
Ajay
Solved! Go to Solution.
Hi @ak77
The problem with Dax here is that you can't add a column with direct query mode.
I don't think that there is a solution from power bi.
But,
You can modify it from the connection
In the datasource connection --> Advance options --> Specify the Select query.
Example : select upper(colname) Col1, upper(colname) Col2 from table1,etc....
Please see linked discussion:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Hi @ak77
The problem with Dax here is that you can't add a column with direct query mode.
I don't think that there is a solution from power bi.
But,
You can modify it from the connection
In the datasource connection --> Advance options --> Specify the Select query.
Example : select upper(colname) Col1, upper(colname) Col2 from table1,etc....
Please see linked discussion:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
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.