vba - collection 참고

vba 2017. 5. 20. 12:04
반응형

vba - collection 참고



참고 ; 



http://analystcave.com/vba-collection/


https://excelmacromastery.com/excel-vba-collections/





** collection 에  item 존재하는지 검사하기


 참고 ;  Excel 2016 Power Programming with VBA   p.261



Private Function IsInCollection(coll As Collection, item As String) As Boolean

    Dim Obj As Object

    

    On Error Resume Next

    Set Obj = coll(item)

    

    IsInCollection = Not Obj Is Nothing

End Function






반응형

'vba' 카테고리의 다른 글

vba -- nothing 사용  (0) 2017.05.24
vba -- autofilter 참고  (0) 2017.05.20
vba - 셀서식 음수는 빨간색으로  (0) 2017.05.19
vba -- Consolidate (통합) 사용 ; 중복 data 합산하기  (0) 2017.05.17
Posted by 자유프로그램
,