Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Version Control!!

Status
Not open for further replies.

kuldeps

Programmer
May 8, 2010
20
GB
Hi Guys ,

Just wondering what is the best way for version controlling Excel ? Getting lots of version conflicts...

Will it be good idea to version control each and every modules or entire excel sheet.

Any ideas, pointers would be really great help.

Regards,
 
Here's a pretty common one.

Code:
If Application.Version = "12.0" Then
Workbooks(workingbook).SaveAs Filename:=filesavename, FileFormat:=56
Else:  Workbooks(workingbook).SaveAs filesavename
End If

This is for saving in 2003 format. If you're in 2007, the file has to be downgraded, if not, saving to native format is ok.
 



Are you referring to Excel Application versions, or are you referring to your personal coding version control?

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Hi Gruuuu ,
Thanks for the response!! Sorry I was not clear in my question?

I am not refering to Excel Version.. I am refering to Coding version control...

VSS , CVS, etc...

Hi Skip : Hope I have clarified your quetion.

Regards,



 



Please clarify your jargon: VSS, CVS

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
OK...

VSS : Visual Sourse Safe.. Come with MS Visual Studios installation.. I have used this for source controlling Visual Basic apps...

CVS : The Concurrent Versions System (CVS), also known as the Concurrent Versioning System, is a free software revision control system in the field of software development. Version control system software keeps track of all work and all changes in a set of files, and allows several developers (potentially widely separated in space and/or time) to collaborate.
 


So do you have that kind of environment? If you have many disbursed developers, I suppose that this would be a necessary tool.

What is your current strategy for rolling out versions?

What is the volumn/frequency of changes?

What is the number of affacted users?

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top