How do I unshare individual sheets in a Workspace?
I need to share a workspace with some users with the exception of a few sheets that have confidential information. Is there a way to share everything except those sheets? There doesn't seem to be a way to do that without removing workspace access and then resharing every other sheet, report, dashboard, etc. manually. I'm hoping there's an easier way.
Answers
-
Paul Newcome ✭✭✭✭✭✭
What if you moved those confidential sheets to another workspace?
-
Thanks Paul. We are trying not to use a second workspace, only to keep the structure simple. If that's our only option, we will do that. I was just hoping for another answer.
-
Paul Newcome ✭✭✭✭✭✭
The only other answer I can provide is to repeat what you have already discovered... Sharing individual items one at a time.
Feel free toSubmit a Product Enhancement Requestwhen you have a moment though.
-
If you unshare a sheet, will the removed person's past activity still show up in the activity log or are their actions no longer visible?
-
Paul Newcome ✭✭✭✭✭✭
@Cecila LopezTheir actions are still visible in the sheet activity log and the cell history.
-
@Neil Feldman, did you find a solution to your question?
-
Unfortunately only the two options above. We went with the second workspace.
Categories
You would use the below for Jan 2023 and adjust the month and year numbers accordingly for each of the other months.<\/p>
=IF(AND(MONTH([Start Date]@row)<= 1, YEAR([Start Date]@row)<= 2023, MONTH([End Date]@row)>= 1, YEAR([End Date]@row)>= 2023), [$ per month]@row)<\/p>"},{"commentID":387901,"body":"
Lets try a different approach.<\/p>
=IF(AND(VALUE(YEAR([Start Date]@row) + IF(MONTH(Start Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/comment/\") + MONTH([Start Date]@row))<= 202307<\/strong>, VALUE(YEAR([End Date]@row) + IF(MONTH([End Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/comment/\") + MONTH([End Date]@row))>= 202307<\/strong>), [$ per month]@row)<\/p> Basically we are creating a yyyymm stamp from the start and end dates and comparing them to the yyyymm stamp for that year\/month combo. The above is for July 2023 (202307).<\/p>"},{"commentID":387906,"body":"
<\/p>