In: Computer Science
In the "Pairs" column in the "Transaction Entry", please display "Yes" for transactions between SalesRep "Sioux" and Customer "YTR", and display "No" otherwise (5%) |
Hi,
I don't have the data but i have created some dummy data to represent this
So first thing you have to do is check when a cell has SalesRep as Sioux AND your customer is YTR
- first do the logical AND of your two cells = AND($D2="Sioux",$E2="YTR")
it will return the value true or false.
In case if its true you need to print Yes, and if its false you need to print No
you can use IF condition after that. so your formula will be
=IF(AND($D2="Sioux",$E2="YTR") = TRUE, "Yes", "No")
**Please give a thumbs up if you like the explanation, also, let me know if you need more help in the comments.**