Get columm in table clicked

How can get the column name the user clicks from a table?
is that possible?

@David_Enrique_Palomo_Brito Welcome to the forum!
in a JS query or wherever you need it run the following script:

var columnName = yourTableName.selectedCell.columnName;

return columnName;
1 Like