excel vba - find function with two criteria in vba -


i want search data 2 conditions. eg: column "a" should match str (string) , column "j" should contain "completed" below coding, able put 1 condition. please advise me changes required add second condition.

 set rng = .find(what:=str,after:=.cells(.cells.count),lookin:=xlvalues, _                            lookat:=xlwhole, searchorder:=xlbyrows, _                           searchdirection:=xlprevious, _                             matchcase:=false) 


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -