I have a quite simple command in Python like:
for i in range(len(qr2)):
if qr2.iloc[i]['Linkage'] == 'Leading'\
or qr2.iloc[i]['CreatedBy'] == 'Paula'\
and qr2.iloc[i]['Book'] == 'A' 'B' 'C' 'D' 'E':
qr_os = qr_os.append(qr2.iloc[i],ignore_index=True)
I am able to receive the rows in Excel which have "Leading" linkage but I am unable to have in the same spreadsheet the rows which have both Paula and Book as A or B or C or D or E.
Anyone able to help? :)