Row of specific column in excel sheet is not accessible due to protection level

Hi all,

Edits for more context:
I would like to embed a PDF in each row of the column PDF. Therefore, i’ve placed ForEach row(“PDF”).

  1. Is there a way to go through each row for a specific Column “PDF” and embed a PDF inside each?

Example:

  1. I would like to assign a created variable ArticleTitle to all the values in Column A. Therefore, I used Assign ArticleTitle = row(“Title”). This has been placed in a For Each Row activity as it will run row by run.

However, i’m unable to assign ArticleTitle = row(“Title”) as it says the row is not declared and may be inaccessible due to its protection level.

Kindly advise if there’s a workaround, please.

image

image

Thanks!

Hailey

@hailey7

Instead of row(“PDF”) place only row
Also add row(“Title”).ToString

check below for your reference

image

Hope this may help you

Thanks

Hi! Thanks @srini84,

Perhaps i should have provided more context. I placed ForEach row(“PDF”) as my ideal next step in the Body is to embed a PDF in each row for the column PDF.

Is there a way to go through each row for a specific Column “PDF” and embed a PDF inside each?

Example:

Thanks!

Hailey

@hailey7

You no need of giving the row(“PDF”) just leave row

Then inside the ForEach, you can write as row(“PDF”) same as the Title you have given

Hope this may help you

Thanks

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.