ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Selecting Non-Consecutive Variables (https://www.excelbanter.com/excel-discussion-misc-queries/68763-selecting-non-consecutive-variables.html)

Colin Vicary

Selecting Non-Consecutive Variables
 

Hello Experts!

I've written some code that prompts the user to indicate which column
two type of data appear in.

I then want to select those two columns, which may not be next to each
other, to copy to another sheet.

I've tried both versions below but neither work! Can anyone tell me
where I'm going wrong?

Columns(ISBNCol & "," & QtyCol).Select
Columns(ISBNCol, QtyCol).Select

Thanks

Colin


--
Colin Vicary
------------------------------------------------------------------------
Colin Vicary's Profile: http://www.excelforum.com/member.php...o&userid=10472
View this thread: http://www.excelforum.com/showthread...hreadid=507283


Dave Peterson

Selecting Non-Consecutive Variables
 
Union(Columns(ISBNCol), Columns(QtyCol)).Select

But you don't usually have to select a range to work with it.


Colin Vicary wrote:

Hello Experts!

I've written some code that prompts the user to indicate which column
two type of data appear in.

I then want to select those two columns, which may not be next to each
other, to copy to another sheet.

I've tried both versions below but neither work! Can anyone tell me
where I'm going wrong?

Columns(ISBNCol & "," & QtyCol).Select
Columns(ISBNCol, QtyCol).Select

Thanks

Colin

--
Colin Vicary
------------------------------------------------------------------------
Colin Vicary's Profile: http://www.excelforum.com/member.php...o&userid=10472
View this thread: http://www.excelforum.com/showthread...hreadid=507283


--

Dave Peterson

Bernie Deitrick

Selecting Non-Consecutive Variables
 
Colin,

It depends on what ISBNCol and QtyCol a numbers, ranges, strings?

If numbers (3, 5, for example) or strings ("C", "E", for example):

Union(Columns(ISBNCol), Columns(QtyCol)).Select

If ranges:

Union(ISBNCol.EntireColumn, QtyCol.EntireColumn).Select

HTH,
Bernie
MS Excel MVP


"Colin Vicary" wrote in message
news:Colin.Vicary.22k66y_1138810501.1725@excelforu m-nospam.com...

Hello Experts!

I've written some code that prompts the user to indicate which column
two type of data appear in.

I then want to select those two columns, which may not be next to each
other, to copy to another sheet.

I've tried both versions below but neither work! Can anyone tell me
where I'm going wrong?

Columns(ISBNCol & "," & QtyCol).Select
Columns(ISBNCol, QtyCol).Select

Thanks

Colin


--
Colin Vicary
------------------------------------------------------------------------
Colin Vicary's Profile: http://www.excelforum.com/member.php...o&userid=10472
View this thread: http://www.excelforum.com/showthread...hreadid=507283




Colin Vicary

Selecting Non-Consecutive Variables
 

Genius!

Thank you, worked perfectly.

Colin


--
Colin Vicary
------------------------------------------------------------------------
Colin Vicary's Profile: http://www.excelforum.com/member.php...o&userid=10472
View this thread: http://www.excelforum.com/showthread...hreadid=507283



All times are GMT +1. The time now is 12:48 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com