Error 2015

mchac

Well-known Member
Joined
Apr 15, 2013
Messages
531
I'm constructing the range below for use in a function but before using it I tried to test using Application.Evaluate and got err 2015.

LAST_COLUMN_LETTER_PLUS_1 is "DK"
LAST_ROW_NUMBER is "43166"

Code:
Debug.Print Application.Evaluate(Range(LAST_COLUMN_LETTER_PLUS_1 & "3:" & LAST_COLUMN_LETTER_PLUS_1 & LAST_ROW_NUMBER))

So I thought this would evaluate to: "DK3:DK43166" but that's not happening.

Can anyone help me understand what I'm doing wrong?
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.

JoeMo

MrExcel MVP
Joined
May 26, 2009
Messages
18,144
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Evaluate converts a range reference to a value. So
Dim myCell as string, myRng as string
myCell="DK3"
Debug.Print Application.Evaluate(myCell)
returns the value in cell DK3, but
myRng = "DK3:DK43166"
Debug.Print Application.Evaluate(myRng)
returns an error b/c you can't return a value for a range consisting of more than one cell.
 
Upvote 0

Forum statistics

Threads
1,196,018
Messages
6,012,892
Members
441,738
Latest member
dataexcel

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
Top