Thread: VBA Help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default VBA Help

Scott,

Don't do that - having multiple copies of data is a recipe for disaster. Use data filters instead,
on one sheet, and select the region, name, or amount criteria on which to filter/show your data.
Then when you delete a row of data, there is no concern about synchronization.

HTH,
Bernie
MS Excel MVP


"Scott Halper" wrote in message
...
I have a bunch of data that looks like this:


Name Region Sales
Joe Smith East 1,000
Jane Smith South (blank)


What I am looking to do is when the sales field is populated with a
number, to take that row and then copy it to the first 10 rows of the
spreadsheet and then when a number is deleted from the sales colum,
the row that has been copy above is then deleted.


Thanks for the help.


Scott