Hotkey for excel

ALT + H + O + I

How auto key can i put them
for auto width

Question is not very clear, but if you want to auto width - using Invoke VBA could be an option.

Firstly, use write the following code in a txt file:

Sub ColumnWidth()
Columns("<Col_Name>:<Col_Name>").EntireColumn.AutoFit
End Sub

e.g, Col_Name = “A” to auto-width A column.

Then use Invoke VBA activity in excel application scope. Mention Txt path and methodName = ColumnWidth

1 Like

Thanks :slight_smile:

If there is any issue, let me know. If it solves your problem, pls mark it as ans.

thanks

Thanks it work
was trying in type into / auto hot key but dont work

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.