Help Editing Formula

Charlie

Board Regular
Joined
Mar 1, 2002
Messages
134
Hi, I need help editing this formula =IF(OR(D9={"Paid in Full","Underpaid"}),0%,$E$3)the new formula has gotta add $E$4 representing a rise of 3% for Feb the $E$3 is 6% Jan, in short it has gotta change the data in the resulting column depending on whether the month is Jan or Feb.The column with Months in it is B8.
Thanks
This message was edited by Charlie on 2002-03-28 15:09
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
=IF(OR(D9={"Paid in Full","Underpaid"}),0,INDIRECT(VLOOKUP(B8,{"Jan","E3";"Feb","F4"},2,0)))
 
Upvote 0
On 2002-03-28 14:45, Charlie wrote:
Hi, I need help editing this formula =IF(OR(D9={"Paid in Full","Underpaid"}),0%,$E$3)the new formula has gotta add $F$4 representing a rise of 3% for Feb the $E$3 is 6% Jan, in short it has gotta change the data in the resulting column depending on whether the month is Jan or Feb.The column with Months in it is B8.
Thanks

Perhaps:

=(D9={"Paid in Full","Underpaid"})*0%+(B8="Jan")*$E$3+(B8="Feb")*$F$4
 
Upvote 0
Hmmm, the first reply posted when entered results in the data being reproduced in the cell, a long row of text.The second one goes in ok but when copied down the column the results are all 0%, I need to show 0% if Paid in Full or Underpaid 6% if Unpaid changing to 3% if the month is February.
Thanks
I made a slight error in the question, 3% is in cell E4 not F4, I tried the correction in both cases.
 
Upvote 0
On 2002-03-28 15:20, Charlie wrote:
Hmmm, the first reply posted when entered results in the data being reproduced in the cell, a long row of text.The second one goes in ok but when copied down the column the results are all 0%, I need to show 0% if Paid in Full or Underpaid 6% if Unpaid changing to 3% if the month is February.
Thanks
I made a slight error in the question, 3% is in cell E4 not F4, I tried the correction in both cases.

=IF(OR(D9={"Paid in Full","Underpaid"}),0%,(B8="Jan")*$E$3+(B8="Feb")*$E$4)

Does this work?

Addendum: Make "Jan" "January" if "January" is what you have in B8.
This message was edited by Aladin Akyurek on 2002-03-28 15:30
This message was edited by Aladin Akyurek on 2002-03-28 15:32
This message was edited by Aladin Akyurek on 2002-03-28 15:38
 
Upvote 0
Changed it to January and February but the data is now showing the same as when I started 0% for Paid etc and 6% for unpaid
Charlie
This message was edited by Charlie on 2002-03-28 15:39
 
Upvote 0
On 2002-03-28 15:35, Charlie wrote:
It seems to work until copied down the column, all results are 0%.
I dont know how to solve this?
Charlie

Hard to answer such a question. Can you copy 10 rows of data and indicate where you put the formula?
 
Upvote 0
Month Invoice Amount Comment Percentage New Amount
January £47.25 Paid in Full 0% £47.25
January £267.75 Underpaid 0% £267.75
January £47.25 Paid in Full 0% £47.25
January £472.50 Paid in Full 0% £472.50
January £456.75 Paid in Full 0% £456.75
January £126.00 Paid in Full 0% £126.00
January £456.75 Unpaid 6% £484.16
January £63.00 Paid in Full 0% £63.00
February £283.50 Unpaid 6% £300.51
January £283.50 Unpaid 6% £300.51
January £173.25 Underpaid 0% £173.25
January £267.75 Unpaid 6% £283.82
January £47.25 Paid in Full 0% £47.25
Chaotic I know.
This message was edited by Charlie on 2002-03-28 15:51
 
Upvote 0
On 2002-03-28 15:47, Charlie wrote:
Month Invoice Amount Comment Percentage New Amount
January £47.25 Paid in Full 0% £47.25
January £267.75 Underpaid 0% £267.75
January £47.25 Paid in Full 0% £47.25
January £472.50 Paid in Full 0% £472.50
January £456.75 Paid in Full 0% £456.75
January £126.00 Paid in Full 0% £126.00
January £456.75 Unpaid 6% £484.16
January £63.00 Paid in Full 0% £63.00
February £283.50 Unpaid 6% £300.51
January £283.50 Unpaid 6% £300.51
January £173.25 Underpaid 0% £173.25
January £267.75 Unpaid 6% £283.82
January £47.25 Paid in Full 0% £47.25
Chaotic I know.
This message was edited by Charlie on 2002-03-28 15:51

Can you state the range of the data you provided? Is it for the percentage column that you need the formula?
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,669
Members
448,977
Latest member
moonlight6

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