I am unable to find any suitable method to copy visible data{only filtered data} from one excel workbook to another workbook using Pywin32 com.
I tried using .Range("B:B").SpecialCells(xlCellTypeVisible).Copy
,VBA method, but its not supported in pywin32,it seems .
I get below error when trying with xlCellTypeVisible:
NameError: name 'xlCellTypeVisible' is not defined
Any help/hint is much appreciated .