Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi everyone,
One Column (Data type text) contains text and numeric values.
Text should be text and numeric values should be converted to percentage in Power BI.
how i will get this.
This is sample data
Thanks and regards
Gopi
Solved! Go to Solution.
@srinudatanalyst Here's an approach using custom columns in the query editor (M), and DAX calculated columns. One multiplies the original number by 100 and one doesn't. A sample .pbix is attached.
Hi @srinudatanalyst
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
Hi @srinudatanalyst
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi, You can try at Power Query lik this:
Custom column in Power query:
= Table.AddColumn(#"Changed Type", "Custom column in Power Query", each if Text.Select([Q1], {"0".."9", ".", "-"}) = [Q1] then Number.ToText(Number.From([Q1]) * 100) & "%" else [Q1])
Or with a calculated column like this:
@srinudatanalyst Here's an approach using custom columns in the query editor (M), and DAX calculated columns. One multiplies the original number by 100 and one doesn't. A sample .pbix is attached.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
62 | |
46 | |
45 |