I am clearing multiple columns from a userform, but they are not continuous. Is there a way to do this with a for next loop. I am showing an example, but it is really about 20 columns and done in multiple subs, so I would like to make it look better.
Thanks for all the help
Code:
ws.Cells(rw, "B").Value = ""
ws.Cells(rw, "D").Value = ""
ws.Cells(rw, "E").Value = ""
ws.Cells(rw, "G").Value = ""
ws.Cells(rw, "H").Value = ""
Thanks for all the help