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 all,
I have a table in my Power BI Report
| Name | Score |
| John | 10 |
| Sue | 20 |
| Kelly | - |
and what I want to make it into is as following:
| Name | Score |
| John | 10 |
| Sue | 20 |
| Kelly | - |
| Average | 15 |
I've tried using quick measure, but it says that it is unable to calculate as the column contains type string.
Hope to get some advice here.
Many thanks.
Solved! Go to Solution.
@jinweitan , Create a new column like this and use that
new Score =if([Score] ="-",blank(),[Score]) //Change data type as whole number
@jinweitan , Create a new column like this and use that
new Score =if([Score] ="-",blank(),[Score]) //Change data type as whole number
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.