How can I edit a revit sheet through Dynamo

I’m trying to create a script that edits sheets on revit, I was able to load the table and generate the values that I want to set on the target column, but there are two main problems:

  1. I don’t know how to write to the table using Dynamo I’ve searched a lot but I didn’t find a solution for it. I even thought of a workaround which would be to get the Family Category the table represents and search for the items of the table according to their values of the fields described in the table, but I also was not able to retrieve the information of the family category.
  2. hidden columns often may represent a problem for my program, because the idea is to modify the values by the actual name of the field which may differ from the header, so with hidden columns the list of field names may be different from the number of columns obtained

Some context:

  1. I use Revit > Selection > Views to get the view where the table is (the view which has the name of the sheet) and get all the information of the table from it
  2. I get the values of the table through the node Schedule.GetData from the package BimorphNodes.

Here is a print of my code

Hi Luiz

Did you tried to get the elements from the schedule and then use Element.SetParameterByName to change its value?