Newbie question: How can I select multiple rows with different values in one column?
this is my data table:A B9 130010 130011 130012 50013 90014 130015 130016 1300And I have three variables: M=10, N=11, and P=13 I want to select rows where A=M and A=N, and A=P.I wrote this line, but it only selects A=M.dt << Select Where (A==M& A==N & A==P) ;do you have any suggestions?
