+ Reply to Thread
Results 1 to 2 of 2

Excel VBA extract multiple values for field

Hybrid View

  1. #1
    Registered User
    Join Date
    03-17-2010
    Location
    NZ
    MS-Off Ver
    Excel 2003
    Posts
    3

    Post Excel VBA extract multiple values for field

    I have some VB code that allows me to interrogate an LDAP database, but there are some "security group" group fields that I can't pull back.

    The code is:

       Set objLDAP = GetObject("LDAP://[server details]")
        Set objConnection = CreateObject("ADODB.Connection")
        With objConnection
        .Provider = "ADSDSOObject"
        .Properties("ADSI Flag") = 0
        .Open "ADSI"
        End With
        Set objCommand = CreateObject("ADODB.Command")
        objCommand.ActiveConnection = objConnection
    
        objCommand.CommandText = "Select Uid,staffid,group,group, accessright from [server details]/ou=People' where objectclass = '*' and uid<='H*'"
        Set objRecordset = objCommand.Execute
    '
        rc = objRecordset.RecordCount
        fc = objRecordset.fields.Count
        For x = 1 To rc
              Do Stuff
       Next x
    When I export the LDAP data to a text file, it comes out as:

    dn: uid=NameU, ou=People, o=server.name
    staffid: 1616
    uid: NameU
    accessright: 2002
    accessright: 2004
    accessright: 2013
    accessright: 2014
    group: 310
    group: 176
    group: 215
    group: 407
    And that is basically what I want to be able to retrieve from LDAP directly into Excel.

    Any ideas?

  2. #2
    Registered User
    Join Date
    03-17-2010
    Location
    NZ
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Excel VBA extract multiple values for field

    Cancel that. Found it.

    http://www.dbforums.com/microsoft-ac...tents-vba.html

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1