Ask a Question related to PERL Miscellaneous, Design and Development.
-
hansioux #1
Trying to select range for Excel chart
Hi,
This is probably not an "perl" question, but I am writting this in perl,
so I gave it a shot.
I have created a excel spreadsheet using the Win32::ole..
I am trying to create a excel chart,
but instead of charting column A all the way through column J
I just want to chart column A and column J.
$Range = $Sheet->Range("A1:J10")->Select(); only gives the whole thing.
Unfortunately, this is the only kind of examples I can find on the web.
Now, I know I can copy and paste this two columns together on to a new
sheet, but that kind of defeats the purpose.
Please give me a pointer, thanks!
--
Posted via [url]http://dbforums.com[/url]
hansioux Guest
-
PDF created from excel range...but with no colors
I'm using the Reader, And Distiller version. I also have the Designer and professional versions. -
Select a range around a specific row
Hi, I need to select a range of ten rows around a specific row such that the specific row floats to the beginning or end of the set as the set... -
Problem with Name of Excel Chart
Hi folks, I have a perl script which produces a 4 worksheet Excel spreadsheet and 4 accompanying Excel Charts. The data all looks fine but I have... -
DB2 Select - how to return a range of results
Hi, Here is some SQL from MS SQL 2000: select top 5 * from (select top 5 * from (select top 25 code, name, address from contacts where name... -
Select Top - percent range?
I don't know the best way to go about selecting ranges of data. I want to be able to have the user select data from the table in 20% ranges of the... -
A. Sinan Unur #2
Re: Trying to select range for Excel chart
Graham Wood <Graham.T.Wood@oracle.com> wrote in
news:3F30F689.9E307414@oracle.com:
Incidentally, one can figure out the answer to this question by starting> hansioux wrote:
>>>> but instead of charting column A all the way through column J
>> I just want to chart column A and column J.
>>
>> $Range = $Sheet->Range("A1:J10")->Select(); only gives the whole
>> thing.
> try
> $Range = $Sheet->Range("A:A,J:J")->Select();
>
> This should select column A and column J rather than all columns
> between A and J.
up Excel, and selecting a discontinuous range for a formula, and looking
at what is displayed in the formula bar. Considerably faster than waiting
for someone else to do it and post the solution on the UseNet.
Sinan.
--
A. Sinan Unur
[email]asu1@c-o-r-n-e-l-l.edu[/email]
Remove dashes for address
Spam bait: mailto:uce@ftc.gov
A. Sinan Unur Guest
-
hansioux #3
Re: Trying to select range for Excel chart
It did work, thanks.
Originally posted by Graham Wood--------------6ACA1FB34367523651D886F4--> This is a multi-part message in MIME format.
> --------------6ACA1FB34367523651D886F4
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 7bit
>
> hansioux wrote:
>> in perl,> > Hi,
> > This is probably not an "perl" question, but I am writting this> J> > so I gave it a shot.
> > I have created a excel spreadsheet using the Win32::ole..
> > I am trying to create a excel chart,
> > but instead of charting column A all the way through column> whole thing.> > I just want to chart column A and column J.
> > $Range = $Sheet->Range("A1:J10")->Select(); only gives the
>
> try
> $Range = $Sheet->Range("A:A,J:J")->Select();
>
> This should select column A and column J rather than all columns
> between A
> and J.
>
> Hope this helps
>
> Graham
>
>
>
> --------------6ACA1FB34367523651D886F4
> Content-Type: text/x-vcard; charset=UTF-8;
> name="Graham.T.Wood.vcf"
> Content-Transfer-Encoding: 7bit
> Content-Description: Card for Graham Wood
> Content-Disposition: attachment;
> filename="Graham.T.Wood.vcf"
>
> begin:vcard
> n:;Graham
> x-mozilla-html:FALSE
> adr:;;;;;;
> version:2.1
> email;internet:Graham.Wood@oracle.com
> fn:Graham Wood
> end:vcard
>
--
Posted via [url]http://dbforums.com[/url]
hansioux Guest



Reply With Quote

