Can someone help me revise my existing formula to look for rows in FileA based on row value in fileB, which should be non case-sensitive. I have this formula for now: For (num in 1:nrow(dic)){
row1=which(FileA$'Position' == FileB$'Position)'[num])
row2=which(FileA$'Job Title' ==FileB$'Job Title'[num])
row= intersect (row1, row2)
So the result should return me all the rows found in FileA based on the content of row in FileB, non case sensitive.