Add values based on column name

How can we fill column values based on column name without using for each.
The column index will be changing .so need a way to fill the excel based on column name instead of cell range in write cell.

Is there a way?

1 Like

Row(“ColumnName”) = “Value”

but this will be inside for each right.can we do anything without for each?