An easy one for someone I am sure :-)

c_c_c1

New Member
Joined
Apr 26, 2002
Messages
2
HI there - a friend suggested I try this out. I am a new user of excel and am using a worksheet set up by a previous user. Here goes:

I have figures for the amounts of jobs done and then for the amount of times we revisted to retreat.

I need to calculate the % of retreats against total jobs done.

Cell H has total job figure

Cell J has number of retreats

Can you suggested a formula to calculate % of retreats.

eg: Cell H = 307

Cell J = 5

THank you for your help.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Use the following formula in the cell of your choice...

=TEXT(J10/H10,"##.#%")

Tom
 
Upvote 0
On 2002-04-27 23:13, TsTom wrote:
Use the following formula in the cell of your choice...

=TEXT(J10/H10,"##.#%")

Tom

When H10 is zero or empty, this formula will give you trouble; moreover, the result will be text-formatted, a fact that will complicate using the result in further computations. I'd suggest using:

=IF(H10,J10/H10,0)

Format the cell of this formula as percentage (%).
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,575
Members
449,039
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top