Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default get validation on a cell clicking a button

Hi

I did not get any errors when i run the macro to get the product list.

when i try calling the macro by clicking on the button, i get this
error msg
run-time error 1004
Application-defiend or object-defined error

product list on sheet 2, validation cell on sheet 3, button on sheet
1,ws is sheet 2

Code for the button
Private Sub CommandButton1_Click()
'get stock code to cell C3 on result page
Call findpdtlist
End Sub

part of the code to get product list, result is sheet 3

Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"

'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <-----------
this line is flag out by the debugger
End With

there is no error when i just run the macro directly.

Why is the error appearing & how to solve it?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default get validation on a cell clicking a button

Is there already a DV in C3? If so, delete it first.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"kiwis" wrote in message
ups.com...
Hi

I did not get any errors when i run the macro to get the product list.

when i try calling the macro by clicking on the button, i get this
error msg
run-time error 1004
Application-defiend or object-defined error

product list on sheet 2, validation cell on sheet 3, button on sheet
1,ws is sheet 2

Code for the button
Private Sub CommandButton1_Click()
'get stock code to cell C3 on result page
Call findpdtlist
End Sub

part of the code to get product list, result is sheet 3

Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"

'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <-----------
this line is flag out by the debugger
End With

there is no error when i just run the macro directly.

Why is the error appearing & how to solve it?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default get validation on a cell clicking a button

i have deleted the DV in that cell at the start of findpdtlist sub

still got the error
here is the full code

Sub findpdtlist()
'get the pdt list from the raw

Dim lastr As Long
Dim rng As Range
Dim ws As Worksheet

Set ws = Worksheets("list")

' Application.ScreenUpdating = False

'clear the drop down list
Worksheets("Result").Range("C3").Validation.Delete

'unhide sheet3
ws.Visible = xlSheetVisible

'clear data
ws.Range("A1").CurrentRegion.Delete

'name all the data on raw page
Worksheets("Raw").Range("A1").CurrentRegion.Name = "data"

'copy the pdt number from raw
Sheets("Raw").Columns("C:C").AdvancedFilter Action:=xlFilterCopy,
_
CopyToRange:=Sheets("list-description").Range("A1"),
Unique:=True

'find last row of list
lastr = ws.Cells(Rows.Count, "A").End(xlUp).Row

' MsgBox lastr

'sort the pdt in ascending order
ws.Range("A:A").Sort key1:=ws.Range("A1"), order1:=xlAscending,
header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom,
_
DataOption1:=xlSortTextAsNumbers

ws.Range("A1").CurrentRegion.EntireColumn.AutoFit

Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"

'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <--------
still error here
End With

'autofit list column
Worksheets("Result").Range("C2").Columns.AutoFit

'hide sheet 3
' ws.Visible = xlSheetHidden
' Application.ScreenUpdating = True

End Sub

using in excel 2003

On Aug 22, 11:20 pm, "Bob Phillips" wrote:
Is there already a DV in C3? If so, delete it first.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"kiwis" wrote in message

ups.com...



Hi


I did not get any errors when i run the macro to get the product list.


when i try calling the macro by clicking on the button, i get this
error msg
run-time error 1004
Application-defiend or object-defined error


product list on sheet 2, validation cell on sheet 3, button on sheet
1,ws is sheet 2


Code for the button
Private Sub CommandButton1_Click()
'get stock code to cell C3 on result page
Call findpdtlist
End Sub


part of the code to get product list, result is sheet 3


Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"


'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <-----------
this line is flag out by the debugger
End With


there is no error when i just run the macro directly.


Why is the error appearing & how to solve it?- Hide quoted text -


- Show quoted text -



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default get validation on a cell clicking a button


kiwis

I think I know what might be contributing to the error code 1004.

It appears to be the advanced filtering to another sheet(i.e it appears as
if you are attempting to transfer the data to sheet "list-description").

The Advanced filter technique doesn't work in this direction , i.e from
sheet A TO Sheet B- there is a particular method that must be employed.

You need to select Sheet B (i.e the sheet that you want to transfer the data
to FIRST,then run the Advanced Filter.Therefore the logic is Shhet B FROM
Sheet A

HTH

Regards

SysAccountant
"kiwis" wrote:

i have deleted the DV in that cell at the start of findpdtlist sub

still got the error
here is the full code

Sub findpdtlist()
'get the pdt list from the raw

Dim lastr As Long
Dim rng As Range
Dim ws As Worksheet

Set ws = Worksheets("list")

' Application.ScreenUpdating = False

'clear the drop down list
Worksheets("Result").Range("C3").Validation.Delete

'unhide sheet3
ws.Visible = xlSheetVisible

'clear data
ws.Range("A1").CurrentRegion.Delete

'name all the data on raw page
Worksheets("Raw").Range("A1").CurrentRegion.Name = "data"

'copy the pdt number from raw
Sheets("Raw").Columns("C:C").AdvancedFilter Action:=xlFilterCopy,
_
CopyToRange:=Sheets("list-description").Range("A1"),
Unique:=True

'find last row of list
lastr = ws.Cells(Rows.Count, "A").End(xlUp).Row

' MsgBox lastr

'sort the pdt in ascending order
ws.Range("A:A").Sort key1:=ws.Range("A1"), order1:=xlAscending,
header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom,
_
DataOption1:=xlSortTextAsNumbers

ws.Range("A1").CurrentRegion.EntireColumn.AutoFit

Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"

'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <--------
still error here
End With

'autofit list column
Worksheets("Result").Range("C2").Columns.AutoFit

'hide sheet 3
' ws.Visible = xlSheetHidden
' Application.ScreenUpdating = True

End Sub

using in excel 2003

On Aug 22, 11:20 pm, "Bob Phillips" wrote:
Is there already a DV in C3? If so, delete it first.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"kiwis" wrote in message

ups.com...



Hi


I did not get any errors when i run the macro to get the product list.


when i try calling the macro by clicking on the button, i get this
error msg
run-time error 1004
Application-defiend or object-defined error


product list on sheet 2, validation cell on sheet 3, button on sheet
1,ws is sheet 2


Code for the button
Private Sub CommandButton1_Click()
'get stock code to cell C3 on result page
Call findpdtlist
End Sub


part of the code to get product list, result is sheet 3


Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"


'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <-----------
this line is flag out by the debugger
End With


there is no error when i just run the macro directly.


Why is the error appearing & how to solve it?- Hide quoted text -


- Show quoted text -




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default get validation on a cell clicking a button

Thanks everyone who replied, i got the error fixed.
Like what sysaccountant said, i make some changes with the logic/order
of advanced filter & got it
to work.

thanks



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default get validation on a cell clicking a button

kiwis

I tried emulating your code to follow the workings.

it would appear that this segment is the problem:

.... 'Set rng = ws.Range("A2:A" & lastr)'
Mainly the variable - lastr . As this generates the error numbe 1004 when I
tested it.

However I am a bit confused - as you said that it worked when you ran the
macro. Can you please elaborate?

Rgds

SysAccountant

"kiwis" wrote:

Hi

I did not get any errors when i run the macro to get the product list.

when i try calling the macro by clicking on the button, i get this
error msg
run-time error 1004
Application-defiend or object-defined error

product list on sheet 2, validation cell on sheet 3, button on sheet
1,ws is sheet 2

Code for the button
Private Sub CommandButton1_Click()
'get stock code to cell C3 on result page
Call findpdtlist
End Sub

part of the code to get product list, result is sheet 3

Set rng = ws.Range("A2:A" & lastr)
rng.Name = "pdtlist"

'get the pdt list on result page
With Worksheets("Result").Range("C3").Validation
.Add Type:=xlValidateList, Formula1:="=pdtlist" <-----------
this line is flag out by the debugger
End With

there is no error when i just run the macro directly.

Why is the error appearing & how to solve it?


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
Clicking submit button on web page RudyShoe Excel Programming 4 January 30th 07 02:52 AM
clicking on a button copies the choice *(VBA) Thrava Excel Discussion (Misc queries) 1 October 2nd 06 10:42 PM
Get info on toolbar button by clicking on it Spamarrant Excel Programming 0 August 25th 06 01:33 PM
Choosing different cell values by user clicking a button alymcmorland[_14_] Excel Programming 5 November 4th 05 03:41 PM
Excel VBA: Pass value when clicking button Milli[_5_] Excel Programming 3 June 10th 04 11:44 PM


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

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

About Us

"It's about Microsoft Excel"