I'm an Autohotkey newbie.
I have an excel sheet but I open it with WPS Office.
I'd like to select the cells in the same row from col J to col Y.
I've found this script for V1 and it is ok in Excel
Code: Select all
k::
xl := ComObjActive("Excel.Application")
y:=xl.Activecell.row
xl.range("J" y ":Y"y+0).select
return
Thanks in advance