Sub collectpostedpending()
Dim typ As Variant
For Each typ In Split("Posted,Pending", ",")
Sheets(typ).Cells.Find("Name", , , xlPart).CurrentRegion.Copy
ActiveSheet.Cells.Find(typ, , , xlPart).Offset(1).Insert Shift:=xlShiftDown
Next typ
End Sub
Chaitu235
ASKER
Can you explain what is typ here?
Saqib Husain
Did it work?
typ is a variable to do the process
once with posted
and then with pending
It worked on the dummy sheet i sent....the requirements have changed
1) The requirement is Everytime data is copied the contents have to be cleared in the Report Sheet under Posted and pending cells Respectively.
2) The data has to get copied to Report worksheet only when Report sheet is active.
I am atatching an updated version of the spreadsheet I received from my user.can you please help me on this .
Please take a look at the updated spreadsheet and let me know if you have any solution.
Saqib Husain
Try
Sub collectpostedpending()
Dim typ As Variant
For Each typ In Split("Posted,Pending", ",")
Sheets(typ).Cells.Find("*", , , xlPart).CurrentRegion.Copy
ActiveSheet.Cells.Find(typ, , , xlPart).Offset(1).Insert Shift:=xlShiftDown
Next typ
End Sub
Syed, When the data is copied it has to get copied from 2nd row and not first row onwards.can you tell me what needs to be done to achieve this.
Saqib Husain
Try
currentregion.offset(1).copy
instead of
currentregion.copy
Chaitu235
ASKER
Hi Syed,
I have a question for you..if i have a formula on Column B on the starting cell i want that formula to apply for every cell in that column when data gets pasted .Can you tell me how can i achieve that.
Where is the formula
What is changed
Where to paste the formula
Chaitu235
ASKER
the formula will be there on the main tab where the data will get copied it will be there on say H column.We are pasting data from A to G columns.The formula on H will do a vlookup based on value in A column.
Now if i have the formula on say H1 cell and paste the data in A to G columns on 20 cells .I want to know if the formula which i have on H1 can be automated to be executed till H20 .
Please let me know.
Thanks,
Chaitu235
Chaitu235
ASKER
Syed i have a question.I wrote the macro code you provided on Worksheet_activate.Can you please let me know how to activate the sheet by default in the code so that the user need not click the Report sheet for the copy to happen
Sub collectpostedpending()
Dim typ As Variant
For Each typ In Split("Posted,Pending", ",")
Sheets(typ).Cells.Find("Na
ActiveSheet.Cells.Find(typ
Next typ
End Sub