vba - Copy row if cell contains a specific text out of a sentence -


i'm still new macros , appreciate if me figure out.

column "a" in excel contains several row below (one column , no space between rows):

design: 0120 model  -traditional color - red design:0150 copybook - quantity specified design: 0180 still in progress 

i need find cell contains "design" , copy of information below cell next sheet, find other cell contains word "design" , copy of information below sheet.

how can in vba? entire cell contains "design:0150",which made hard me search word "design" it's part of sentence in cell. , how can automate copy , paste of each "design" set?

you can try using line in code:

if left(cell.value, 6) = "design" 

this can serve purpose here. if doesn't work let know full code can better.


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 -