Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I wanted to delete empty rows from excel sheet in particualar range for which i wrote a below code and succeeded. Now i want to delete only row data of A to G column instead of deleting full row but i am unable to define it in the loop. I have also wrote besides the code that where i am not able to define. Please help me somebody to solve it out. I will be really very thankful for it. ------------------------------------------------ Sub DelEmptyRow() Dim I As Variant Rng = Selection.Rows.Count ActiveCell.Offset(0, 0).Select Application.ScreenUpdating = False For i= 1 to rng step 1 If ActiveCell.Value = "" Then Selection.EntireRow.Delete 'HERE I WANT TO DEFINE I VALUE AND DONT WANT TO DELETE THE FULL ROW BUT A(I) TO G(I) 'Selection.Delete Shift:=xlUp Else ActiveCell.Offset(1, 0).Select End If Next I Application.ScreenUpdating = True End Sub ----------------------------------------------------------------- Please mail me at Thanks. Best Regards. Didar. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Define Name range | Excel Discussion (Misc queries) | |||
Name to define a chart range | Excel Discussion (Misc queries) | |||
Define a range | Excel Discussion (Misc queries) | |||
Define a range based on another named range | Excel Worksheet Functions | |||
Define Range Name | Excel Programming |