A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
=B1 &" "& AVERAGE(A1:A10)*100&"%"
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Suppose there is a column A1 to A10. This column contains some percentage values (ie. 10%, 15%, 90%, ....)
There is a cell B1 in which I have Typed "Target".
Now in the cell B2, I want to show average of the above column. I type =B1 & AVERAGE(A1:A10) which will result Target1.4
I want to display it as Target 14%. Please help me how can I do it.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
That would be:
=B1&" "&TEXT(AVERAGE(A1:A10),"0%")