im sure this is simple but i need
IF B1 IS TRUE AND F1 = "BAG 1" THEN CELL F3 SHOULD EQUAL E2
could someone please help.
im sure this is simple but i need
IF B1 IS TRUE AND F1 = "BAG 1" THEN CELL F3 SHOULD EQUAL E2
could someone please help.
In cell F3:
=IF(AND(B1=TRUE,F1="BAG 1"),E2)
You didn't specify a response for false.
Is your code running too slowly?
Does your workbook or database have a bunch of duplicate pieces of data?
Have a look at this article to learn the best ways to set up your projects.
It will save both time and effort in the long run!
Dave
What happens if B1 is FALSE or F1 does not equal "BAG 1"? In the formula below I assume you do not want anything displayed.
Enter this formula into F3:
=If(AND(B1,F1="BAG 1"),E2,"")
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks