Aug 22 2018 06:56 PM
Hi,
I'm new to Sharepoint and I have an issue where I'm not able to find a way to share list data. What I tried to do is have 3 sets of lists each with their own columns and columns that they share. Each list has a custom level of priviledges:
LIST.A: Column1 Column2 Column3 Column4 Access by users set.A
LIST.B: Column1 Column4 Column5 Access by users set.B
LIST.C: Column1 Column2 Column4 Column6 Access by users set.C
Is there a way to do this?
Thanks,
Nikola
Aug 22 2018 07:28 PM
Aug 22 2018 07:47 PM
Hi, thanks for your repsonse.
So what I want to do is have 3 listst that share some of the columns and each has its own set of columns. The first column (column 1) would be a unique column.
LIST.A: Column1(unique) Column2 Column3 Column4
LIST.B: Column1(unique) Column4 Column5
LIST.C: Column1(unique) Column2 Column4 Column6
In fact it's list level security. It's just that the lists are shareing the same entries just with some same and some different columns involved.
Aug 22 2018 11:26 PM
Aug 22 2018 11:53 PM
Ok so what are my possibilities for this problem? Cheers
Aug 23 2018 12:31 AM
Do you have a requirement there for security or is it that you just want to show different data sets to different users? If there's no security requirement around it, you could just use a single list with different views configured for each group of users. This way you have one version of the truth, i.e. one list item which is accessed by several different groups of users, but depending on the view will depend on the columns which are shown. This approach would give you the following:
List:
VIEW.A: Column1 Column2 Column3 Column4 Viewed by users set.A
VIEW.B: Column1 Column4 Column5 Viewed by users set.B
VIEW.C: Column1 Column2 Column4 Column6 Viewed by users set.C
Aug 23 2018 12:33 AM
Hi,
thanks for replying. Unfortunatelly, I need this for security. So group of users need to have access to list A, others need to acces List B etc.
Aug 23 2018 12:34 AM
Do the users needs to interact with the data once it's in those lists or are they read-only?
Aug 23 2018 12:36 AM - edited Aug 23 2018 12:41 AM
They need to interact with the data that is only unique for that list. The shared data is imputed(and interacted with) in list A.
Aug 23 2018 12:46 AM
Ok, thanks for that. So to summarise (this is just so that I completely understand the requirement :))
List A
Contains a set of data specific to this list.
Is secured to User Group A
List B
Contains the data that has been entered into List A AND has data specific to this list
Is secured to User Group B only
List C
Contains the data that has been entered into List A AND has data specific to this list
Is secured to User Group C only
Are you expecting users to be able to do something with the combined shared and unique data in lists B and C?
The way my mind is working at the moment you have a few options:
1. As @Deleted mentioned, you could create a PowerApp to create a custom interface onto the lists
2. You use a Flow/Workflow to replicate the entries from List A into Lists B and C. I don't particularly like this as you'll have duplicates of the data, and you'll have to ensure that if anything changes in the consuming lists, then you'll need to replicate the changes across
3. You could create a page which has two web parts on it. One displaying the shared data from List A, and the other displaying the data relevant to them i.e. pageb.aspx has a web part displaying List B.
Aug 23 2018 12:59 AM
Are you expecting users to be able to do something with the combined shared and unique data in lists B and C?
Sorry.. I'm not sure what do you mean here..
Basically, what I want to do is build a master list (with a master-unique column) and other columns that get distributed to other lists based on the master-unique column. The other lists should have the master-unique column and their own set of columns. Columns should be also copied from list B to list C. Good thing with this is that I do not need a column that needs to be changed in multiple lists, I just need it presented in other lists.
As for the webpart, it that working in latest o365 modern webparts?
Aug 23 2018 01:21 AM
Aug 23 2018 01:44 AM
Let me try to explain this way:
LIST1
COLUMN1: Project code(unique)
calculated value based on other columns
COLUMN2: Project name
COLUMN3: Project details
COLUMN4: Deadline 1
COLUMN5: Deadline 2
COLUMN6: Status (copy from list 3)
LIST2
COLUMN1: Project code(unique) (copy from list1)
COLUMN2: Project name (copy from list1)
COLUMN3: Deadline 2 (copy from list2, column5)
COLUMN4: Specification
LIST3
COLUMN1: Project code(unique)
COLUMN2: Project name (copy from list1)
COLUMN3: Specification (copy from list2)
COLUMN4: Status
Aug 23 2018 01:58 AM
Aug 23 2018 08:48 PM
So you suggest using flow as the best solution to the problem here?
Aug 24 2018 01:46 AM
Yes, given the additional information that you've provided I don't think there are many other options whilst keeping things out-of-the-box.
The way @Deleted describes is pretty much the same as my option 2, where you use Flow to duplicate the content from your master list to the child lists. As you want this done automatically, that's the only way you're going to be able to do it.
If you were manually entering items into the child lists, you could have used lookup columns to your master list, which would then have allowed you to only have the unique "master" data stored once.