After running the ITR form1 excel utility of income tax site, i am not able to insert sheet rows or cut sheet rows from right click of the mouse. other right click options are ok. cells group option for insert sheet rows is working but i want my right click of the mouse to have all options...
Hi @sgmpatnaik
I have entered a stand-alone macro with your script
-----
With ActiveSheet.Cells(Rows.Count, 1)
If .Value = "" Then
.End(xlUp).Select
Else
.Select
End If
End With
-----
1
2
3
4
a
b
c
I am in cell with value 1. Macro is taking me to the last cell with value in...
Hi Faseeh
I am using an existing macro. I like to add your macro into my existing macro.
Problem is
1
2
3
4
a
b
c
I am in cell where 1 is written.How to Reach the cell after the data value (4) automatically in the above column? Remember there are more values down below, after a few...