Hi,
I have been trying to design an Access 2013 desktop database to report on user access to shared folders within the company I work for. Acess to folders is granted by users being added to a permission group and groups being added to folders.
What I want is to be able to query the data and find out which users have access to which folders. My tables are currently:
tblGroups
GroupID: PK Autonumber
GroupName: Short Text
GroupType: Lookup (Permission; Distribution; Mailbox Sharing)
tblUsers
UserID: PK Autonumber
FirstName: Short text
Surname: Short text
Username: Short text
Groups: Lookup- tblGroups.GroupName
tblFolders
FodlerID: PK Autonumber
RootFolder: Short text
FullRootFolderAccess: Lookup- tblGroups.GroupName
ReadOnlyRootFolderAccess: Lookup- tblGroups.GroupName
What I want to be able to pull back out of the system is the answer to the question 'who has access to which folders' and 'which folders does [insert name] have access to'.
Ideally I don't want to have to create a junction table- I want to be able to add a new user based on the tblUsers and that be that.
Any help greatly appreciated.
If I do have to have a junction table is there anyway it can autopopulate from the other data entered?
Thanks
LizzyJ
(Access 2013 is the version I am using)
I have been trying to design an Access 2013 desktop database to report on user access to shared folders within the company I work for. Acess to folders is granted by users being added to a permission group and groups being added to folders.
What I want is to be able to query the data and find out which users have access to which folders. My tables are currently:
tblGroups
GroupID: PK Autonumber
GroupName: Short Text
GroupType: Lookup (Permission; Distribution; Mailbox Sharing)
tblUsers
UserID: PK Autonumber
FirstName: Short text
Surname: Short text
Username: Short text
Groups: Lookup- tblGroups.GroupName
tblFolders
FodlerID: PK Autonumber
RootFolder: Short text
FullRootFolderAccess: Lookup- tblGroups.GroupName
ReadOnlyRootFolderAccess: Lookup- tblGroups.GroupName
What I want to be able to pull back out of the system is the answer to the question 'who has access to which folders' and 'which folders does [insert name] have access to'.
Ideally I don't want to have to create a junction table- I want to be able to add a new user based on the tblUsers and that be that.
Any help greatly appreciated.
If I do have to have a junction table is there anyway it can autopopulate from the other data entered?
Thanks
LizzyJ
(Access 2013 is the version I am using)