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

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
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,213,536
Messages
6,114,202
Members
448,554
Latest member
Gleisner2

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