Wednesday 21 August 2019

excel - Looping through rows and copy cell values to another worksheet

Intention: I have a list of data in sheets(inputs).column BN (the number of rows that has value will vary and hence I created a loop that will run the macro until the active cell is blank).



My macro starts from Range (BN2) and stretches all the way down column BN, it stops only when it hits a blank row. Desired result for the macro will be to start copying the cell value in sheet(input).Range(BN2) paste it to sheet(Output).Range(A2:A10).



For example, if "Peter" was the value in cell sheet(input),range(BN2) then when the marco runs and paste the value into sheet(Output) range(A2:A10). i.e. range A2:A10 will reflect "Peter". Then the macros loop back to sheet(inputs) and copies the next cell value and paste it to range(A11:A19) Example: "Dave" was the value in sheet(inputs) Range(BN3), then "Dave" will be paste into the next 9 rows in sheet(mywork).Range(A11:A19). A11:A19 will reflect "Dave"
Again repeating the same process goes back to sheet(input) this time range(BN4), copies the value goes to sheet(Output) and paste it into A20:A29.
Basically the process repeats....



The macro ends when the active cell in sheet (input) column A is empty.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...