Forum Discussion
Mel4342
Apr 30, 2021Copper Contributor
Excel formula question.
I have quite a few excel formula questions considering I am new to it. But here's my first one. I have the formula =IF(J4+91>AF4,1,0) I am expecting to get a 1 if the date in j4 +91 is > than the dat...
Mel4342
Apr 30, 2021Copper Contributor
I am new to excel but doesn't 1 mean it's true and 0 means its false
SergeiBaklan
Apr 30, 2021Diamond Contributor
Exactly, 0 means FALSE. If return TRUE/FALSE you may simply use =(E3+91)>F3.
- Mel4342Apr 30, 2021Copper ContributorThat all makes a alot of sense. If I wanted to find AF4 dates that fell within 90 days before J4 only when J4 is equal to 1,1,2021 would it be something like this?
=IF(and(j4>=Date(2020,1,1),j4>=90),1,0))
Or am I off?- SergeiBaklanApr 30, 2021Diamond Contributor