Percentage formula help

lexkhan

New Member
Joined
Mar 4, 2008
Messages
47
I need a percentage formula for column C. Also, I need the formula to show 0%, if the column B = 0 but it show error #DIV/0!. I have two column with data Column A and Column B.

Columns A (Number of Cars arrive for Service)
1
4
0
2
3

Columns B (Number of Cars Serviced on-time)
1
0
0
1
2

Thank you in advance.

lex
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
What formula are you currently using?

I would think you would need

=IF(A1=0,0,B1/A1)
 
Upvote 0
What I use is =IF(ISERROR(B2/A2),0,(B2/A2)) and format the cells to show as percentage.

There probably is a more elegant solution, but this works for me.
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,537
Members
449,316
Latest member
sravya

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