Hi, I want to write in a cell givin the column’s name because it’s possible the number of columns can change
2 Likes
Hi @Christian_Maury,
Considering these conditions, you could get the column index based on its name, and convert it to column letter.
So…
First step: yourDataTable.Columns.IndexOf("columnName")
Second step:
Third step: Concatenate with the row number to get the cell
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.