Change #DIV/0! to Blank in VBA

nhinx

Board Regular
Joined
Aug 25, 2016
Messages
55
Office Version
  1. 2010
Dear Excel Experts,

I have a VBA below which works fine but when there is no value in column I to Column J it will give a value of #DIV/0! in computing the average What shall I do to convert it to blank? Kindly help me please. See code below

VBA Code:
Private Sub Worksheet_Activate()

Row = 8 'row of description
Column = 6 'column of description

Dim sheet As Worksheet

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> ""
Row = Row + 1
Loop

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value = "TOTAL"

If ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> "" Then
ThisWorkbook.ActiveSheet.Cells(Row, 12).Value = "=AVERAGE(RC[-3]:RC[-1]" & ")"

ElseIf ThisWorkbook.ActiveSheet.Cells(Row, Column).Value = "" Then
ThisWorkbook.ActiveSheet.Cells(Row, 12).Value = ""

End If

Row = Row + 1

Loop

End Sub

Thanks,

Nhinx
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
You can try the below code :
VBA Code:
Private Sub Worksheet_Activate()

Row = 8 'row of description

Column = 6 'column of description

Dim sheet As Worksheet

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> ""
    
    Row = Row + 1

Loop

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value = "TOTAL"

    If ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> "" Then
    
        ThisWorkbook.ActiveSheet.Cells(Row, 12).Value = "=IFERROR(AVERAGE(RC[-3]:RC[-1]" & "),"")"
    
    End If
    
    Row = Row + 1

Loop

End Sub
 
Upvote 0
The above will error out, you need to double up on the quotes.
VBA Code:
ThisWorkbook.ActiveSheet.Cells(ROW, 12).Value = "=IFERROR(AVERAGE(RC[-3]:RC[-1]" & "),"""")"
 
Upvote 0
Solution
You can try the below code :
VBA Code:
Private Sub Worksheet_Activate()

Row = 8 'row of description

Column = 6 'column of description

Dim sheet As Worksheet

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> ""
   
    Row = Row + 1

Loop

Do Until ThisWorkbook.ActiveSheet.Cells(Row, Column).Value = "TOTAL"

    If ThisWorkbook.ActiveSheet.Cells(Row, Column).Value <> "" Then
   
        ThisWorkbook.ActiveSheet.Cells(Row, 12).Value = "=IFERROR(AVERAGE(RC[-3]:RC[-1]" & "),"")"
   
    End If
   
    Row = Row + 1

Loop

End Sub

Thanks Sanjeev. But it says Run time error 1004
 
Upvote 0

Forum statistics

Threads
1,222,902
Messages
6,168,938
Members
452,227
Latest member
sam1121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top