Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 45
Default Updating distributed Excel applications

I have a VBA application that I've distributed to a couple of clients. Now
some changes need to be made to the worksheets to conform to various
regulatory requirements. These changes would need to be made to what could
be called "data" worksheets from which various "form" worksheets pull
information based on lookup (and other) functions.

Say, for example, I need to add a column to the middle of one of the data
sheets. Is it possible to do that programatically without destroying the
data so the client does not have to recreate the data?

TIA
Mike

--
Michael J. Malinsky
Pittsburgh, PA

"I am a bear of very little brain, and long
words bother me." -- AA Milne, Winne the Pooh


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Updating distributed Excel applications

Michael,

This inserts a column on "Sheet1" at column C (the original column C is
moved to column D)

Note that the insert is done without any select.

''''''''''''''''
Sub AddColumn()
Sheets("Sheet1").Range("C1").EntireColumn.Insert
End Sub
''''''''''''''''''
hth
--

steveB

(Remove 'NOSPAM' from email address if contacting me direct)


"Michael Malinsky" wrote in message
...
I have a VBA application that I've distributed to a couple of clients.

Now
some changes need to be made to the worksheets to conform to various
regulatory requirements. These changes would need to be made to what

could
be called "data" worksheets from which various "form" worksheets pull
information based on lookup (and other) functions.

Say, for example, I need to add a column to the middle of one of the data
sheets. Is it possible to do that programatically without destroying the
data so the client does not have to recreate the data?

TIA
Mike

--
Michael J. Malinsky
Pittsburgh, PA

"I am a bear of very little brain, and long
words bother me." -- AA Milne, Winne the Pooh




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Updating distributed Excel applications

Mike,

You would be much better off adding the newly required column to
the right of the existing data.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Michael Malinsky" wrote in message
...
I have a VBA application that I've distributed to a couple of

clients. Now
some changes need to be made to the worksheets to conform to

various
regulatory requirements. These changes would need to be made

to what could
be called "data" worksheets from which various "form"

worksheets pull
information based on lookup (and other) functions.

Say, for example, I need to add a column to the middle of one

of the data
sheets. Is it possible to do that programatically without

destroying the
data so the client does not have to recreate the data?

TIA
Mike

--
Michael J. Malinsky
Pittsburgh, PA

"I am a bear of very little brain, and long
words bother me." -- AA Milne, Winne the Pooh




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
Applications in Excel Snailspace New Users to Excel 5 October 22nd 08 03:39 PM
Installation of Excel and other MS Applications Rawle Excel Discussion (Misc queries) 1 February 13th 08 04:08 PM
Distributed Excel Application Jason Excel Discussion (Misc queries) 1 August 7th 06 06:46 PM
Applications of Excel in different industries Mary C. Excel Discussion (Misc queries) 2 January 6th 05 05:37 PM
Running other applications from Excel VB Mervyn Thomas[_3_] Excel Programming 0 September 8th 03 05:36 PM


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