Whats wrong with this formula

TiggerToo

Board Regular
Joined
Feb 26, 2002
Messages
158
column A is a date formula $f2+1
column c is a code number 31 or 32
column D is the results I need.
the formula is something like this;
=if(sheet01!a6=f2+1,sheet01!c6=31,sheet01!e6)
I need to check column A and B before I get the results of column D. Also when I input the formula is show something wrong with f2+1
or the +1 part of F2
Thanks Walt
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

column A is a date formula $f2+1
column c is a code number 31 or 32
column D is the results I need.
the formula is something like this;
=if(sheet01!a6=f2+1,sheet01!c6=31,sheet01!e6)
I need to check column A and B before I get the results of column D. Also when I input the formula is show something wrong with f2+1
or the +1 part of F2


Walt

=if(sheet01!a6=f2+1,sheet01!c6=31,sheet01!e6)

means that when the condition [ sheet01!a6=f2+1 ] is true, return the result of the test whether sheet01!c6 is equal to 31, an evaluation that is bound to return either TRUE or FALSE, otherwise [that's, condition sheet01!a6=f2+1 is false ] return the value in sheet01!e6. Is this your intent?

Regarding F2, type in empty cell

=ISNUMBER(F2)

and report back what this gives?

Aladin
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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