Skip to content
Advertisement

How to Not Transfer Blank Column to Master Sheet?

This code works perfectly until the ‘if’ is added. The ‘if’ should prevent the row that has no data in column 2 from being transferred to the master sheet. How to I make data that has not data prevent from transferring.

JavaScript

Advertisement

Answer

Explanation:

I believe your goal is to transfer the data from each month sheet to the Master sheet except for the rows for which column B is empty.

  • Iterate over the sheets and forEach sheet get the data from the second column until column 27 and until the last row with content of the corresponding sheet.

  • Filter out the rows for which column B is empty. Remember your range starts from column B therefore in terms of JavaScript, the zero element of the values array corresponds to the values of column B:

    JavaScript
  • Spread syntax is used to make sure you concatenating the values properly.

  • I also improved your code both in terms of performance but also make it easier to modify it, for example change some range parameters etc.

Solution:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement