Percentages & IF formula

lec2012

New Member
Joined
Jul 5, 2011
Messages
7
Hi

I was hoping someone could give me some help on the below query.....

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
I hope this is explained a little better than my previous attempt:
<o:p></o:p>
Example One:<o:p></o:p>
<o:p></o:p>
Cell AK 8 = 95% (What percentage trained is the employee?)
Cell AL 8 = No (Has the person been with us less than 30days?)
<o:p></o:p>
Example Two:<o:p></o:p>
<o:p></o:p>
Cell AK 9 = 80% (What percentage trained is the employee?)
Cell AL 9 = Yes (Has the person been with us less than 30days?)
<o:p></o:p>
In column AN8 I would want the percentage in AK8 as the person has been with us for more than 30days (ie Column AN8 should be returned as 95%)
<o:p></o:p>
In column AN9 I would want the percentage to be discounted (or omitted / returned as zero) as the person has been with us less than 30days.

Any help would be greatly appreciated
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Would the days in cells AL8 or AL9 always be yes or no, or you would input the number of days?
If its gonna be yes or no try
=IF(AL8="Yes",AK8,0)
If its gonna be a number
=IF(AL8>=30,AK8,0)
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,949
Latest member
Dupuhini

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