'Object variable or With block variable not set' error when setting a range in VBA
Posted
by
David Gard
on Super User
See other posts from Super User
or by David Gard
Published on 2012-10-22T10:40:26Z
Indexed on
2012/10/22
11:05 UTC
Read the original article
Hit count: 300
I have a function that creates a Pivot Table, but I am getting an error when I try to set a range that will be merged and have a title added to it.
In the below code, pivot_title_range
is a 'String' variable, and is optional when calling the funtion. title_range
is a 'Range' variable. Both lines that set the range (whether or not the users declares pivot_title_range
) cause the same error.
If pivot_title_range = "" Then
title_range = ActiveSheet.Range("B3:E4")
Else
title_range = ActiveSheet.Range(pivot_title_range)
End If
Here is the error that I am getting -
Run-time error '91':
Object variable or With block variable not set
If required, here is a Pastebin of the full function - http://pastebin.com/L711jayc. The offending code starts on line 160.
Is anybody able to tell me what I am doing wrong? Thanks.
© Super User or respective owner