Share via

how to display percentage format using formula

Anonymous
2024-05-10T09:46:49+00:00

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.

Microsoft 365 and Office | Excel | For business | Other

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.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Anonymous
    2024-05-10T10:57:50+00:00

    =B1 &" "& AVERAGE(A1:A10)*100&"%"

    1 person found this answer helpful.
    0 comments No comments
  2. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2024-05-10T10:10:48+00:00

    =B1&" "&TEXT(AVERAGE(A1:A10),"0%")

    1 person found this answer helpful.
    0 comments No comments
  3. riny 20,870 Reputation points Volunteer Moderator
    2024-05-10T10:08:53+00:00

    That would be:

    =B1&" "&TEXT(AVERAGE(A1:A10),"0%")

    1 person found this answer helpful.
    0 comments No comments