Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
jaf jaf is offline
external usenet poster
 
Posts: 300
Default Application-defined or object-defined error

Hi Deepak,
Most likely you have a reference that is not fully qualified.

..Cells(RowNo, tCol)... In Excel means activesheet in the active workbook.

From VB6 it would be unqualified because you haven't specified the workbook
object.
This causes VB6 to try find "Cells" in the object lib.
It will, but it will find Excels global object "cells".

So change ".Cells" to "objwb.Cells" in all three instances.

--

John

johnf202 at hotmail dot com


"Deepak Dembla" wrote in message
...
hello everyone,

I am using VB 6.0 with SP5 on a win2k pro machine with office 2k
installed.
The following code:

.Cells(RowNo, tCol).FormulaR1C1 = "=Sum(" & .Cells(RowNo, tCol -

1).Address
& ":" & .Cells(RowNo, tCol - UBound(arrVehicles)).Address & ")"

returns a "Application-defined or object-defined error" 1004.

how ever, when i went to debug mode and saw the values it showed me

$F$20 = Sum($E$20:$C$20)

which is correct, but the error still appears.

wht I am trying to do here is adding up the previous 3 cell values to the
fourth one.
Can any one help me out?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Run-time error '50290': Application-defined or object-defined erro Macro button Excel Discussion (Misc queries) 1 March 12th 09 10:59 AM
Application-defined or object-defined error Please Help [email protected] Excel Discussion (Misc queries) 1 April 3rd 06 01:00 PM
Runtime Error 1004 -- Application Defined or Object Defined Error John[_51_] Excel Programming 3 September 4th 03 04:28 PM
VBA - Application-defined or object-defined error tina salgia Excel Programming 0 August 24th 03 10:35 PM
VBA - Application-defined or object-defined error Chip Pearson Excel Programming 0 August 24th 03 08:43 PM


All times are GMT +1. The time now is 01:32 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"