Hi all,
I am trying to output a table into multiple tabs after removing null columns.
Example input:
LBL Owner | Header 1 | Header 2 | Header 3 | Header 4 | Header 5 | Header 6 | Header 7 | Header 8 | Header 9 | Header 10 |
A | Zxx | 200 | | 400 | 100 | 200 | | 400 | | |
B | 300 | | 300 | | | xsw | | cww | | ww |
C | | | | 200 | | | | | | |
A | 100 | 200 | | 400 | ww | | ww | ww | www | ww |
B | 300 | | 300 | | ww | | dd | | | |
C | | | | 200 | | | dd | | dd | |
The output excel would have the three tabs with following different tables:
Tab A
LBL Owner | Header 1 | Header 2 | Header 4 | Header 5 | Header 6 | Header 7 | Header 8 | Header 9 | Header 10 |
A | zxx | 200 | 400 | 100 | 200 | | 400 | | |
A | 100 | 200 | 400 | ww | | ww | ww | www | ww |
Tab B
LBL Owner | Header 1 | Header 3 | Header 5 | Header 6 | Header 7 | Header 8 | Header 10 |
B | 300 | 300 | | xsw | | cww | ww |
B | 300 | 300 | ww | | dd | | |
Tab C
LBL Owner | Header 4 | Header 7 | Header 9 |
C | 200 | | |
C | 200 | dd | dd |
I am currently using a saving each LBL Owner in an output tool that takes file name from the "LBL Onwer" column (multiple tabs same file)
Problem:
The output file does have different tabs, with just relevant rows, but it outputs all the columns, including the empty ones. I have searched everywhere to try and resolve this issue, I really hope you guys will be able to help!