<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Excel sensitivity label in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62100#M15272</link>
    <description>&lt;P&gt;Did you find a solution? &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/670"&gt;@PawanPanjwani1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Agustin Rodolfo Catalano&lt;BR /&gt;Computing Engineering&lt;BR /&gt;Santander Argentina&lt;BR /&gt;America/Argentina/Buenos_Aires&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 18 Jul 2023 16:41:00 GMT</pubDate>
    <dc:creator>acatalano</dc:creator>
    <dc:date>2023-07-18T16:41:00Z</dc:date>
    <item>
      <title>Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62095#M15267</link>
      <description>Hello, I'm testing the Excel sensitivity label functionality, that requires to select a label before interacting with the workbook, and have not been able yet to figure out how to select a label automatically. Does anybody knows how to manage this using Excel VBO? Thanks in advance&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Beatriz Santos&lt;BR /&gt;P2P Lead Europe&lt;BR /&gt;CHEP&lt;BR /&gt;Europe/Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2022 17:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62095#M15267</guid>
      <dc:creator>santosb</dc:creator>
      <dc:date>2022-04-20T17:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62096#M15268</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b6f17fb3-d20f-40b5-b350-866c5eeb553c" data-tag-text="@Beatriz Santos" href="https://community.blueprism.com/network/profile?UserKey=b6f17fb3-d20f-40b5-b350-866c5eeb553c" data-itemmentionkey="307dc91e-20f6-488c-b762-4f08ff41c858"&gt;@Beatriz Santos&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Sensitivity Labels are not currently supported in the ​VBO.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Apr 2022 14:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62096#M15268</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-04-21T14:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62097#M15269</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c3609408-7a28-46d3-927b-dec681cc815e" data-tag-text="@Beatriz Santos" href="https://community.blueprism.com/network/profile?UserKey=c3609408-7a28-46d3-927b-dec681cc815e" data-itemmentionkey="4f7a5141-507f-45ac-95d7-3055b097e52e"&gt;@Beatriz Santos&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Did you try code stage to achieve the functionality?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur Manager&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Apr 2022 17:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62097#M15269</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2022-04-22T17:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62098#M15270</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;I have came across a requirement where I have to change the Excel file's Sensitivity label to&amp;nbsp;&lt;STRONG&gt;Confidential &lt;/STRONG&gt;before saving the file. Now I know the Excel VBA Code of it, however I was not able to make it workable via code stage. Can anyone help me on this?&amp;nbsp;&lt;BR /&gt;--------------------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Here is the VBA Code:&lt;/P&gt;
&lt;P&gt;Sub SetSensitivityLabelConfidential()&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dim myLabelInfo As Office.LabelInfo&lt;BR /&gt;&amp;nbsp; Dim Context As Variant&lt;BR /&gt;&amp;nbsp; Dim objWorkbook As Workbook&lt;BR /&gt;&amp;nbsp; Dim SConfidential As String&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Set objWorkbook = ActiveWorkbook&lt;BR /&gt;&amp;nbsp; Set myLabelInfo = objWorkbook.SensitivityLabel.CreateLabelInfo()&lt;BR /&gt;&amp;nbsp; Set Context = CreateObject("Scripting.Dictionary")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; With myLabelInfo&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.AssignmentMethod = MsoAssignmentMethod.PRIVILEGED &amp;nbsp; &amp;nbsp; '1&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.ContentBits = 4&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.IsEnabled = True&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.Justification = "Write Your Reason"&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.LabelId = "Your Organization alpha numberic code for Confidential type"&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.LabelName = "Confidential"&lt;BR /&gt;&amp;nbsp; &amp;nbsp;.SetDate = Now()&lt;BR /&gt;&amp;nbsp; End With&lt;/P&gt;
&lt;P&gt;&amp;nbsp; objWorkbook.SensitivityLabel.SetLabel myLabelInfo, Context&lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;
&lt;P&gt;&amp;nbsp;--------------------------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Pawan Panjwani&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pawan Panjwani&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 12:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62098#M15270</guid>
      <dc:creator>PawanPanjwani</dc:creator>
      <dc:date>2023-05-18T12:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62099#M15271</link>
      <description>&lt;P&gt;Hi Members,&lt;BR /&gt;&lt;BR /&gt;Can any one help me with the above issue.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Pawan Panjwani&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pawan Panjwani&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 May 2023 11:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62099#M15271</guid>
      <dc:creator>PawanPanjwani</dc:creator>
      <dc:date>2023-05-24T11:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62100#M15272</link>
      <description>&lt;P&gt;Did you find a solution? &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/670"&gt;@PawanPanjwani1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Agustin Rodolfo Catalano&lt;BR /&gt;Computing Engineering&lt;BR /&gt;Santander Argentina&lt;BR /&gt;America/Argentina/Buenos_Aires&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Jul 2023 16:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62100#M15272</guid>
      <dc:creator>acatalano</dc:creator>
      <dc:date>2023-07-18T16:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62101#M15273</link>
      <description>&lt;P&gt;Yes Agustin, got the solution.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pawan Panjwani&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Jul 2023 13:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62101#M15273</guid>
      <dc:creator>PawanPanjwani</dc:creator>
      <dc:date>2023-07-19T13:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel sensitivity label</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62102#M15274</link>
      <description>&lt;P&gt;could you tell me how you did it? &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/670"&gt;@PawanPanjwani1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Agustin Rodolfo Catalano&lt;BR /&gt;Computing Engineering&lt;BR /&gt;Santander Argentina&lt;BR /&gt;America/Argentina/Buenos_Aires&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 18:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-sensitivity-label/m-p/62102#M15274</guid>
      <dc:creator>acatalano</dc:creator>
      <dc:date>2023-07-19T18:59:00Z</dc:date>
    </item>
  </channel>
</rss>

