I am trying to read an excel file with multiple tabs. For that, I use the code provided here. The problem is that each tab has a different number of empty rows before the actual data begins. For example, the first tab has two empty rows, the second tab has three empty rows, and so on.
Normally, I would use the parameter skip
in the read_excel
function to indicate the number of empty lines to skip. But how do I do that for multiple tabs with different numbers of rows to skip?