ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   TABLE filter net zero amounts (https://www.excelbanter.com/excel-programming/412806-table-filter-net-zero-amounts.html)

Sinner

TABLE filter net zero amounts
 
Hi,

I want to remove all zero balance in the file.
File: http://savefile.com/files/1618048


Thx.

joel

TABLE filter net zero amounts
 
Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:

Hi,

I want to remove all zero balance in the file.
File: http://savefile.com/files/1618048


Thx.


Sinner

TABLE filter net zero amounts
 
On Jun 19, 8:11*pm, Joel wrote:
Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete



"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?

Waiting for reply.
Thx.

joel

TABLE filter net zero amounts
 
The code was more complicated than I originally expected

Sub removerows()

Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete

FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)

If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
Loop
End Sub

"Sinner" wrote:

On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete



"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?

Waiting for reply.
Thx.


Sinner

TABLE filter net zero amounts
 
On Jun 19, 10:55*pm, Joel wrote:
The code was more complicated than I originally expected

Sub removerows()

Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete

FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *NextID = Range("A" & (RowCount + 1))
* *If NextID < "" Then
* * * If ID < NextID Then
* * * * *'sum the rows from FirstRow to present Row
* * * * *Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * Range("F" & RowCount))
* * * * *Total = WorksheetFunction.Sum(SumRange)

* * * * *If Total = 0 Then
* * * * * * Rows(FirstRow & ":" & RowCount).Delete
* * * * * * RowCount = FirstRow
* * * * *Else
* * * * * *RowCount = RowCount + 1
* * * * * *FirstRow = RowCount
* * * * *End If
* * * * *ID = Range("A" & RowCount)
* * * End If
* *Else
* * * RowCount = RowCount + 1
* *End If
Loop
End Sub



"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.

-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.

Hope you can fix that.

Thx alot once again.
Waiting for reply.

joel

TABLE filter net zero amounts
 
The microsoft Autofilter wasn't working correctly. I got rid of it and did
the deletes in my code.

Sub removerows()

FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
Grandtotal = Range("F" & RowCount)
If Grandtotal = 0 Then
Rows(RowCount).Delete
Else
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)

If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
End If
Loop
End Sub


"Sinner" wrote:

On Jun 19, 10:55 pm, Joel wrote:
The code was more complicated than I originally expected

Sub removerows()

Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete

FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)

If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
Loop
End Sub



"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.

-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.

Hope you can fix that.

Thx alot once again.
Waiting for reply.


Sinner

TABLE filter net zero amounts
 
On Jun 20, 2:21*am, Joel wrote:
The microsoft Autofilter wasn't working correctly. *I got rid of it and did
the deletes in my code.

Sub removerows()

FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *Grandtotal = Range("F" & RowCount)
* *If Grandtotal = 0 Then
* * * Rows(RowCount).Delete
* *Else
* * * NextID = Range("A" & (RowCount + 1))
* * * If NextID < "" Then
* * * * *If ID < NextID Then
* * * * * * 'sum the rows from FirstRow to present Row
* * * * * * Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * * *Range("F" & RowCount))
* * * * * * Total = WorksheetFunction.Sum(SumRange)

* * * * * * If Total = 0 Then
* * * * * * * *Rows(FirstRow & ":" & RowCount).Delete
* * * * * * * *RowCount = FirstRow
* * * * * * Else
* * * * * * * *RowCount = RowCount + 1
* * * * * * * *FirstRow = RowCount
* * * * * * End If
* * * * * * ID = Range("A" & RowCount)
* * * * *End If
* * * Else
* * * * *RowCount = RowCount + 1
* * * End If
* *End If
Loop
End Sub



"Sinner" wrote:
On Jun 19, 10:55 pm, Joel wrote:
The code was more complicated than I originally expected


Sub removerows()


Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *NextID = Range("A" & (RowCount + 1))
* *If NextID < "" Then
* * * If ID < NextID Then
* * * * *'sum the rows from FirstRow to present Row
* * * * *Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * Range("F" & RowCount))
* * * * *Total = WorksheetFunction.Sum(SumRange)


* * * * *If Total = 0 Then
* * * * * * Rows(FirstRow & ":" & RowCount).Delete
* * * * * * RowCount = FirstRow
* * * * *Else
* * * * * *RowCount = RowCount + 1
* * * * * *FirstRow = RowCount
* * * * *End If
* * * * *ID = Range("A" & RowCount)
* * * End If
* *Else
* * * RowCount = RowCount + 1
* *End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.


-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.


Hope you can fix that.


Thx alot once again.
Waiting for reply.- Hide quoted text -


- Show quoted text -


Thx Joel. It works as was required.
One last bit if you can add.
After this macro ends & we have the desired table, is there a
possibility to remove a row for which there is value in cell in
columnE but corresponding columnD cell is blank. If you can add this
step in same macro but at the end of what it has done so far. Putting
it in start will vary the result.

Thx alot once again.
Waiting for reply.

Sinner

TABLE offset net zero amounts using a macro (Joel)
 
On Jun 20, 2:47*am, Sinner wrote:
On Jun 20, 2:21*am, Joel wrote:





The microsoft Autofilter wasn't working correctly. *I got rid of it and did
the deletes in my code.


Sub removerows()


FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *Grandtotal = Range("F" & RowCount)
* *If Grandtotal = 0 Then
* * * Rows(RowCount).Delete
* *Else
* * * NextID = Range("A" & (RowCount + 1))
* * * If NextID < "" Then
* * * * *If ID < NextID Then
* * * * * * 'sum the rows from FirstRow to present Row
* * * * * * Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * * *Range("F" & RowCount))
* * * * * * Total = WorksheetFunction.Sum(SumRange)


* * * * * * If Total = 0 Then
* * * * * * * *Rows(FirstRow & ":" & RowCount).Delete
* * * * * * * *RowCount = FirstRow
* * * * * * Else
* * * * * * * *RowCount = RowCount + 1
* * * * * * * *FirstRow = RowCount
* * * * * * End If
* * * * * * ID = Range("A" & RowCount)
* * * * *End If
* * * Else
* * * * *RowCount = RowCount + 1
* * * End If
* *End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 10:55 pm, Joel wrote:
The code was more complicated than I originally expected


Sub removerows()


Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *NextID = Range("A" & (RowCount + 1))
* *If NextID < "" Then
* * * If ID < NextID Then
* * * * *'sum the rows from FirstRow to present Row
* * * * *Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * Range("F" & RowCount))
* * * * *Total = WorksheetFunction.Sum(SumRange)


* * * * *If Total = 0 Then
* * * * * * Rows(FirstRow & ":" & RowCount).Delete
* * * * * * RowCount = FirstRow
* * * * *Else
* * * * * *RowCount = RowCount + 1
* * * * * *FirstRow = RowCount
* * * * *End If
* * * * *ID = Range("A" & RowCount)
* * * End If
* *Else
* * * RowCount = RowCount + 1
* *End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.


-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.


Hope you can fix that.


Thx alot once again.
Waiting for reply.- Hide quoted text -


- Show quoted text -


Thx Joel. It works as was required.
One last bit if you can add.
After this macro ends & we have the desired table, is there a
possibility to remove a row for which there is value in cell in
columnE but corresponding columnD cell is blank. If you can add this
step in same macro but at the end of what it has done so far. Putting
it in start will vary the result.

Thx alot once again.
Waiting for reply.- Hide quoted text -

- Show quoted text -


Hi Joel,
A minor last minute modification needed.

Waiting for reply.
Thx.

joel

TABLE offset net zero amounts using a macro (Joel)
 
Sub removerows()

FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
Grandtotal = Range("F" & RowCount)
If Grandtotal = 0 Then
Rows(RowCount).Delete
Else
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)

If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
End If
Loop

RowCount = 2
Do While Range("F" & RowCount) < ""
If Range("D" & RowCount) = "" And _
Range("E" & RowCount) < "" Then

Rows(RowCount).Delete
Else
RowCount = RowCount + 1
End If

Loop

End Sub



"Sinner" wrote:

On Jun 20, 2:47 am, Sinner wrote:
On Jun 20, 2:21 am, Joel wrote:





The microsoft Autofilter wasn't working correctly. I got rid of it and did
the deletes in my code.


Sub removerows()


FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
Grandtotal = Range("F" & RowCount)
If Grandtotal = 0 Then
Rows(RowCount).Delete
Else
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)


If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 10:55 pm, Joel wrote:
The code was more complicated than I originally expected


Sub removerows()


Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
NextID = Range("A" & (RowCount + 1))
If NextID < "" Then
If ID < NextID Then
'sum the rows from FirstRow to present Row
Set SumRange = Range(Range("F" & FirstRow), _
Range("F" & RowCount))
Total = WorksheetFunction.Sum(SumRange)


If Total = 0 Then
Rows(FirstRow & ":" & RowCount).Delete
RowCount = FirstRow
Else
RowCount = RowCount + 1
FirstRow = RowCount
End If
ID = Range("A" & RowCount)
End If
Else
RowCount = RowCount + 1
End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
field:=1, _
Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.


-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.


Hope you can fix that.


Thx alot once again.
Waiting for reply.- Hide quoted text -


- Show quoted text -


Thx Joel. It works as was required.
One last bit if you can add.
After this macro ends & we have the desired table, is there a
possibility to remove a row for which there is value in cell in
columnE but corresponding columnD cell is blank. If you can add this
step in same macro but at the end of what it has done so far. Putting
it in start will vary the result.

Thx alot once again.
Waiting for reply.- Hide quoted text -

- Show quoted text -


Hi Joel,
A minor last minute modification needed.

Waiting for reply.
Thx.


Sinner

TABLE offset net zero amounts using a macro (Joel)
 
On Jun 20, 4:23*pm, Joel wrote:
Sub removerows()

FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *Grandtotal = Range("F" & RowCount)
* *If Grandtotal = 0 Then
* * * Rows(RowCount).Delete
* *Else
* * * NextID = Range("A" & (RowCount + 1))
* * * If NextID < "" Then
* * * * *If ID < NextID Then
* * * * * * 'sum the rows from FirstRow to present Row
* * * * * * Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * * *Range("F" & RowCount))
* * * * * * Total = WorksheetFunction.Sum(SumRange)

* * * * * * If Total = 0 Then
* * * * * * * *Rows(FirstRow & ":" & RowCount).Delete
* * * * * * * *RowCount = FirstRow
* * * * * * Else
* * * * * * * *RowCount = RowCount + 1
* * * * * * * *FirstRow = RowCount
* * * * * * End If
* * * * * * ID = Range("A" & RowCount)
* * * * *End If
* * * Else
* * * * *RowCount = RowCount + 1
* * * End If
* *End If
Loop

RowCount = 2
Do While Range("F" & RowCount) < ""
* *If Range("D" & RowCount) = "" And _
* * * Range("E" & RowCount) < "" Then

* * * Rows(RowCount).Delete
* *Else
* * * RowCount = RowCount + 1
* *End If

Loop

End Sub



"Sinner" wrote:
On Jun 20, 2:47 am, Sinner wrote:
On Jun 20, 2:21 am, Joel wrote:


The microsoft Autofilter wasn't working correctly. *I got rid of it and did
the deletes in my code.


Sub removerows()


FirstRow = 2
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *Grandtotal = Range("F" & RowCount)
* *If Grandtotal = 0 Then
* * * Rows(RowCount).Delete
* *Else
* * * NextID = Range("A" & (RowCount + 1))
* * * If NextID < "" Then
* * * * *If ID < NextID Then
* * * * * * 'sum the rows from FirstRow to present Row
* * * * * * Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * * *Range("F" & RowCount))
* * * * * * Total = WorksheetFunction.Sum(SumRange)


* * * * * * If Total = 0 Then
* * * * * * * *Rows(FirstRow & ":" & RowCount).Delete
* * * * * * * *RowCount = FirstRow
* * * * * * Else
* * * * * * * *RowCount = RowCount + 1
* * * * * * * *FirstRow = RowCount
* * * * * * End If
* * * * * * ID = Range("A" & RowCount)
* * * * *End If
* * * Else
* * * * *RowCount = RowCount + 1
* * * End If
* *End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 10:55 pm, Joel wrote:
The code was more complicated than I originally expected


Sub removerows()


Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


FirstRow = 1
RowCount = FirstRow
ID = Range("A" & RowCount)
Do While Range("F" & RowCount) < ""
* *NextID = Range("A" & (RowCount + 1))
* *If NextID < "" Then
* * * If ID < NextID Then
* * * * *'sum the rows from FirstRow to present Row
* * * * *Set SumRange = Range(Range("F" & FirstRow), _
* * * * * * Range("F" & RowCount))
* * * * *Total = WorksheetFunction.Sum(SumRange)


* * * * *If Total = 0 Then
* * * * * * Rows(FirstRow & ":" & RowCount).Delete
* * * * * * RowCount = FirstRow
* * * * *Else
* * * * * *RowCount = RowCount + 1
* * * * * *FirstRow = RowCount
* * * * *End If
* * * * *ID = Range("A" & RowCount)
* * * End If
* *Else
* * * RowCount = RowCount + 1
* *End If
Loop
End Sub


"Sinner" wrote:
On Jun 19, 8:11 pm, Joel wrote:
Columns("F").AutoFilter _
* * field:=1, _
* * Criteria1:=0
Rows.SpecialCells(xlCellTypeVisible).EntireRow.Del ete


"Sinner" wrote:
Hi,


I want to remove all zero balance in the file.
File:http://savefile.com/files/1618048


Thx.- Hide quoted text -


- Show quoted text -


Thx for the reply Joel.
Still the numbers with comulative zero in columnF are there like
(-2000) & (+2000) for same entities.
Do we have to fill the blank# cells in columnA first & then make a
temp column to offset the balances & remove balances that are zero?


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx Joel for the concern.
The code however is dowing two unusual things.


-Deleting the header row.
-Each time I run the macro, it is deleting a row from remaining data
for no reason.


Hope you can fix that.


Thx alot once again.
Waiting for reply.- Hide quoted text -


- Show quoted text -


Thx Joel. It works as was required.
One last bit if you can add.
After this macro ends & we have the desired table, is there a
possibility to remove a row for which there is value in cell in
columnE but corresponding columnD cell is blank. If you can add this
step in same macro but at the end of what it has done so far. Putting
it in start will vary the result.


Thx alot once again.
Waiting for reply.- Hide quoted text -


- Show quoted text -


Hi Joel,
A minor last minute modification needed.


Waiting for reply.
Thx.- Hide quoted text -


- Show quoted text -


Thx alot Joel for the much needed support :) worked like a charm ; )


All times are GMT +1. The time now is 07:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com