Quote:
Originally Posted by tamarissa
I did get it work, shut everything down and restarted; it seemed to be fine. However, it doesn't do what it says it should; for example, there are multiple books that have the Read Status column = "N" that should say have the new column say "yes", but actually says "no'.
|
This post implies that you want the following:
Code:
IF Column A (#keep_read) = "Yes" OR Column B (#read_status) = "N",
THEN Column C (#send_kobo) = "Yes"
ELSE Column C (#send_kobo) = "No"
The "&" says that
both conditions must be true in order to see "Yes" (the meaning of "and"). This post implies that "Yes" should be displayed if
either condition is true (the meaning of "or").
If I am right then you can fix the problem by changing "and(" in the template to "or(".