Excel Formula Help - Multiple IF/AND Statement with Dates

Johnny Thunder

Well-known Member
Joined
Apr 9, 2010
Messages
693
Office Version
  1. 2016
Platform
  1. MacOS
Hello All,

I am in need of some help with a hard IF/AND Statement with multiple variables

My current Formula:

=IF(T$4=$J9-1,$Q9*0.3,IF(T$4=$J9,$Q9*0.5,IF(T$4=$J9+1,$Q9*0.1,"")))

Definitions
T$4 = is my header date (Formula is dragged left to right in the same row
$J9 = My Starting Date, all the subsequent uses of J9's date have a plus 1 or negative one. So if my J9's start date is Nov-19 and I use -1 I would expect the formula to see Oct-19.
$Q9 = $Amount
*0.3 or 30% = Is the variable I would like to use for -1
*0.5 or 50% = Is the variable I would like to use for StartDate
*0.1 or 10% = Is the variable I would like to use for +1

I thought the formula I wrote would work but no dice. Any ideas would help and unfortunately I can't use VBA in this case.Also, a non-array formula would be best for the users I am writing this workbook for.

Thanks in advance.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi,

If J9 is a Real Date value, adding or substracting 1 is Only adding 1 day or minus 1 day.

Replace J9+1 with EDATE(J9,1)

and J9-1 with EDATE(J9,-1)

Didn't go thru your formula, just pointing out the Date error.
 
Upvote 0
Thanks! @jtakw that pointed me in the right direction. My formula was so close, just needed that EDATE piece: =IFERROR(IF(T$4=EDATE($J9,-1),$Q9*MRNeg1,IF(T$4=$J9,$Q9*MRStart,IF(T$4=EDATE($J9,1),$Q9*MRPlus1,IF(T$4=EDATE($J9,2),$Q9*MRPlus2,"")))),"")

Works great!
 
Upvote 0

Forum statistics

Threads
1,213,510
Messages
6,114,034
Members
448,543
Latest member
MartinLarkin

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