Related:
- Autofill cells based on conditions & unique values
- Excel macro to create new sheet based on value in cells - Guide
- Unique code to confirm your identity on facebook ✓ - Facebook Forum
- We couldn't find an account matching the login info you entered, but found an account that closely matches based on your login history ✓ - Facebook Forum
- Facebook message show confirm your identity - Facebook Forum
- If cell contains text then return value multiple conditions ✓ - Excel Forum
2 responses
First of all, for any cell to have an automatic value assigned to it must be initated by a button push. With thta being said, the syntax for IF is as follows:
=IF(logic_test,True,False)
And the syntax for AND is as follows:
=AND(first_test_for_true,Second_test_for_True) [returns true if both are true.
So, with the above syntax, we can combine, starting with an AND. As in:
=AND(IF(a1="Fruit"),IF(B1="apple"),5)
And there you have it. Play with it and see what happens. I will check back if you have any questions.
Please understand I will not rewrite my examples to fit your model. The examples are there for you to learn by, not cut and paste into your homework!!!!!!
=IF(logic_test,True,False)
And the syntax for AND is as follows:
=AND(first_test_for_true,Second_test_for_True) [returns true if both are true.
So, with the above syntax, we can combine, starting with an AND. As in:
=AND(IF(a1="Fruit"),IF(B1="apple"),5)
And there you have it. Play with it and see what happens. I will check back if you have any questions.
Please understand I will not rewrite my examples to fit your model. The examples are there for you to learn by, not cut and paste into your homework!!!!!!
I am confused....
So I input a five, and you want the five to trigger what? A fruit? An apple? Is the five really an index to a fruit? I am confused, as your original scope has been addressed, and now it has chaned...
...there is a thing in the IT world, called SCOPE CREEP! This thing called SCOPE CREEP is why I only post examples, and not turnkey solutions. I always try to explain what the METHODS are doing, and how to make them apply to the OP's model. It always happens, the OP asks for something, then changes the question after I have spent time providing code and a a viable solution.
So, explain what you want the sheet to do now!
So I input a five, and you want the five to trigger what? A fruit? An apple? Is the five really an index to a fruit? I am confused, as your original scope has been addressed, and now it has chaned...
...there is a thing in the IT world, called SCOPE CREEP! This thing called SCOPE CREEP is why I only post examples, and not turnkey solutions. I always try to explain what the METHODS are doing, and how to make them apply to the OP's model. It always happens, the OP asks for something, then changes the question after I have spent time providing code and a a viable solution.
So, explain what you want the sheet to do now!
Feb 23, 2018 at 02:02 PM
Feb 23, 2018 at 04:34 PM