Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Excel AutoFilter using ASp.net


I want to perform the Autofilter programmatically using .Net but it i
not happening. Code, which I have written, is as under:

ExlSheet.Range("A1:R1").AutoFilter(Field:=1, Criteria1:="=" & strSRNo
Visibledropdown:=False)

Please do the needful

Regards,
Shalin

--
ShaliniPosted from http://www.pcreview.co.uk/ newsgroup acces

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 226
Default Excel AutoFilter using ASp.net

Try it without the brackets:

ExlSheet.Range("A1:R1").AutoFilter Field:=1, Criteria1:="=" & strSRNo,
Visibledropdown:=False

You also probably don't need the = sign:

ExlSheet.Range("A1:R1").AutoFilter Field:=1, Criteria1:= strSRNo,
Visibledropdown:=False

Hope this helps
Rowan
"Shalini" wrote:


I want to perform the Autofilter programmatically using .Net but it is
not happening. Code, which I have written, is as under:

ExlSheet.Range("A1:R1").AutoFilter(Field:=1, Criteria1:="=" & strSRNo,
Visibledropdown:=False)

Please do the needful

Regards,
Shalini


--
ShaliniPosted from http://www.pcreview.co.uk/ newsgroup access


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 129
Default Excel AutoFilter using ASp.net

Hi,

I suppose that 'Range("A1:R1").AutoFilter' doesn't recognize
the range of data correctly.
when the target range has no data, autofilter might fail.

release the filter, then try this:

ExlSheet.Range("A1").AutoFilter(Field:=1, Criteria1:= strSRNo,
VisibleDropdown:=False)

or

ExlSheet.Range("A1").CurrentRegion.AutoFilter(Fiel d:=1, Criteria1:=
strSRNo,
VisibleDropdown:=False)


--
HTH
okaizawa

Shalini wrote:
I want to perform the Autofilter programmatically using .Net but it is
not happening. Code, which I have written, is as under:

ExlSheet.Range("A1:R1").AutoFilter(Field:=1, Criteria1:="=" & strSRNo,
Visibledropdown:=False)

Please do the needful

Regards,
Shalini

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
excel 2007 autofilter change to 2003 autofilter functionality? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 10:05 PM
2007 excel autofilter back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 3 April 19th 10 08:11 PM
2007 excel autofilter change back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 05:53 PM
2007 Autofilter worse than 2003 Autofilter jsky Excel Discussion (Misc queries) 9 October 31st 07 12:14 AM
How to Sort within AutoFilter with Protection on (and AutoFilter . giblon Excel Discussion (Misc queries) 1 February 16th 06 12:23 PM


All times are GMT +1. The time now is 07:06 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"