Hi, My organization has setup an sensitivity label in excel. I need to download the excel file from email attachment and need to input data to that excel file. For that to happen, first I need to select the label once it gets downloaded. I am looking for any invoke code solution or any workflow if present please. The pic below shows the sensitivity label that I need to select
Use this approach.
- Develop a workflow to open the downloaded file path. Don’t add any other logic here.
- In a separate workflow, add
Parallel activity
.
AddInvoke Workflow File
activity into Parallel to invoke the step 1 workflow and make sure you are checking the property Isolated (If this check box is selected, the invoked workflow runs in a separate Windows process. This helps us to handle other popups on excel)
Add logic to select the sensitivity label from the popup in Parallel.
This should be enough for you to handle this scenario.
Thanks,
Ashok
@ashokkarale hi thanks for your response. I am a bit confused here. Could you provide me an example if possible please?
Hi Ashok,
Sorry for confusion but I am looking for that popup handling logic? The pop only comes up if you select label on the excel file
Click on this
and this comes up
And I have 4 downloaded excel file from the email… that all needs to have label selected to General
Ohh! If the popup not blocking the code execution, then you can use UI interaction like Click activity for this.
My understanding was it’s blocking the execution.
Thanks,
Ashok