View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.programming
Dean[_8_] Dean[_8_] is offline
external usenet poster
 
Posts: 407
Default Help end the testing tedium please

The project names were, indeed, range names. I'm not sure that is
important. The new macro is crashing (subscript out of range) at:

Sheets(Prj_Sht).Activate

I'm not sure why. The filename and sheet name look fine. It seems that we
are now skipping the Consolidate Project macro and, perhaps, it was the last
part of that macro that was defining what Prj_Sht is. Which brings me to
that question that confuses you on the B = A thing: I can't figure out how
column I of Utility gets populated. I know that, somehow, when the old
macro ran, it did, but I can't figure out how.

By the way, if a macro crashes at a certain point, does everything before
that point get done, or does it, somehow, not do anything? The cell on
Utility is not getting populated - I can tell you that.

Thanks!
Dean


"Joel" wrote in message
...
1) The old code was/is working fine, so the problem is in the new code. I
fixed the wrap around problem as you advised. I am a little confused by
the
two arguments needed for "Consolidate". When you call it from Consolidate
All, it seems that you may be reversing their order from what Consolidate
wants. Is that correct?

Is did reverse order. sorry

2) Considering the above, I am also a bit confused by your suggestion fro
automating the assumed filename, perhaps because you have copied the
routine
to name the project sheet. Please assume that both the filename and the
worksheet name are sequential. Let's say the filenames are test1 thru
test60
and that the sheet names will be joe jones test1 thru joe jones test 60

New code above is using your suggestion

3) Lastly, though it is not essential info for me to understand, I know
that
a
worksheet called Utility somehow captures the sheet names, but am confused
as to how it gets them. There are statements such as

If Sheets("Utility").Range("I" & (n + 40)) "" Then
Prj_Sht = Sheets("Utility").Range("I" & (n + 40))
Else

Your original code had the function below which may be causing part of
your
problems. There is a names range called "projectname". I think you can
see
it in the worksheet menu


Insert - Name - Define

if it is not in the above try

File - Properties

Let me know which one it is located. There are few ways of defining
ranges
and I can't tell from the code which method is being used.
----------------------------------------------------------------------

Sub Load_Consolidate_Dialog()
'If this bombs, you may have to clear out the names in the hidden
"utility"
worksheet
Dim n As Integer
For n = 1 To 60
If Range("projectName" & (n)).Value "" Then
Consolidate_Dialog.Controls("ProjectButton" & (n)).Caption _
= Range("ProjectName" & (n)).Value
Else
Consolidate_Dialog.Controls("ProjectButton" & (n)).Caption _
= "Project " & (n)
End If
Next n
Consolidate_Dialog.Show
End Sub

---------------------------------------------------------------------

4) If Sheets("Utility").Range("I" & (n + 40)) "" Then
Prj_Sht = Sheets("Utility").Range("I" & (n + 40))
Else

This code is a little different from Load_Consolidate_Dialog. It doesn't
use a named range instead it is actuall using a cell location in worksheet
utility. Range("I55"). Notice the double quotes around the range which
indicates this is a string. An ampersand (&) connects string together and
converts a number (n) to a string. So if N = 55 (N is a number),
Range("I" &
N) is the same as Range("I55"). VBA converted automaitcally the number 55
to
a string "55".


5) in the macro which are probably doing it, but I think I am confused
because
I am still interpreting them backwards. When I see "Then B = A", I assume
that it means to assign A's value to B. But I am guessing that this is
just
the opposite. If so, I guess you have answered my question. If not, then
if you have any clue as to how it is finding its way onto the Utility
worksheet, let me know (it may be off somewhere in another macro). I do
know which cell in each input file becomes Prj_Sht. I just am a little
confused as to where the macro puts it.

B = A does mean assign A's value to B. Not sure why you are interpreting
this backwards. It may be the IF statement

If Sheets("Utility").Range("I" & (n + 40)) "" then

The above is a test check if the string on sheet utility Range "I?" (? is
number) is not a blank string. I prefer not to use but use < (not
equal)

If Sheets("Utility").Range("I" & (n + 40)) < "" then

The statement below is the assignment if the string is not empty

Prj_Sht = Sheets("Utility").Range("I" & (n + 40))


New Consolidate All
I added a messgebox to help get it working. You can remove the message
box
after we get the code working. Check the placement of the spaces in the
msgbox. You had "test60" and "test 60". Not sure which is right. I add
a
blank before the number (" "). Remove the blank and one of the ampersands
if
it is wrong from both statements below. chr(13) put a carraige return
into
the messbox to make the message easier to read.
--------------------------------------------------------------------------------
Sub Consolidate_All()
Dim n As Integer
mypath = "C:\Documents and Settings\Dean\My Documents\AW\CONSOL
TEMPLATE\files\"
sht = "joe jones"
files = "test"
For n = 1 To 60
PrjName = sht & " " & n
ProjectFile = mypath & sht & files & " " & n & ".xls"
'remove msgbox after code works
msgbox("File and project name are as follows : " & chr(13) & _
ProjectFile & chr(13) & PrjName)
Call Consolidate(ProjectFile,PrjName)
Next n
End Sub

"Dean" wrote:

The old code was/is working fine, so the problem is in the new code. I
fixed the wrap around problem as you advised. I am a little confused by
the
two arguments needed for "Consolidate". When you call it from
Consolidate
All, it seems that you may be reversing their order from what Consolidate
wants. Is that correct?

Considering the above, I am also a bit confused by your suggestion fro
automating the assumed filename, perhaps because you have copied the
routine
to name the project sheet. Please assume that both the filename and the
worksheet name are sequential. Let's say the filenames are test1 thru
test60
and that the sheet names will be joe jones test1 thru joe jones test 60

Lastly, though it is not essential info for me to understand, I know that
a
worksheet called Utility somehow captures the sheet names, but am
confused
as to how it gets them. There are statements such as

If Sheets("Utility").Range("I" & (n + 40)) "" Then
Prj_Sht = Sheets("Utility").Range("I" & (n + 40))
Else

in the macro which are probably doing it, but I think I am confused
because
I am still interpreting them backwards. When I see "Then B = A", I
assume
that it means to assign A's value to B. But I am guessing that this is
just
the opposite. If so, I guess you have answered my question. If not,
then
if you have any clue as to how it is finding its way onto the Utility
worksheet, let me know (it may be off somewhere in another macro). I do
know which cell in each input file becomes Prj_Sht. I just am a little
confused as to where the macro puts it.

Can you kindly answer these questions and rewrite Consolidate ALL so that
it
automates both the filename and the worksheet name?

Thanks much for your help!
Dean

"Joel" wrote in message
...
Dean: I trying to minimize the risk of breaking the code that is
already
working. I don't think you have posted all the code which I don't need
but
don't want to break. There is probably code on the sheet pages and
Thisworkbook that you are not aware of. Lets not worry about that
code.
Lets just get your test function working. From your psting I'm not
sure
if
the old code still works or the problem is the new code. right now I'm
assuming the new code had problems.


I modified my code to include the path

Sub Consolidate_All()
mypath = "C:\Documents and Settings\Dean\My Documents\AW\CONSOL
TEMPLATE\files\"

Dim n As Integer
ProjectFile = Array("","Filename1","Filename2",.........)
For n = 1 To 60
ProjectName = Range("projectName" & (n)).Value
Call Consolidate(ProjectName, mypath & ProjectFile(n))
Next n
End Sub

Answer to questions
--------------------------------------------------------------------------------------------
1) in the array, do the filenames need the .xls extension?
Yes
2) if the names of
the file really were test1 thru test60, would the array statement need
them
all listed or is it smart enough for a ... to work?

The are lots of ways to get the filename. The array method will work
ynder
any condition. If there is a pattern to the file name then the array
may
not
be necessary such like the code below

For n = 1 To 60
ProjectName = Range("projectName" & (n)).Value
Call Consolidate(ProjectName, mypath & "test" & n)
Next n

3) By path, I assume you
mean the path to the folder where the files will be. If so, I think we
can
ignore that for now, i.e., as long as the last time it was queried, we
supplied the same folder, it will use that folder as a default, right?

The new code I gave you now includes the path

4) When you say:

I will make the ProjectFile Array easier to enter the names (they will
be
shorter).

I don't know what you mean. Are you planning on doing some more work?

As I said before, There are lots of ways to get the files names
depending
if
there is a pattern to the names or if they are random. I wanted yo to
see
what I was doing and then expected exactly the questions you are
asking.

the additional work is what I'm doping now which is helping you find
the
best way to get the filenames. I hope I'm not confusing you. I felt
it
was
better not to give you too much information until you saw the code. the
I
planed to answer the questions you needed answered.

5) I tried copying your macro into my file, just using, test1, test2,
and
test3
as the three project names in the array and I notice that, every time
the

Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=False

command shows up, it is in red font. What could be the problem there?

I t looked like the line wrapped. The underscore "_" should be on the
same
line as the = and False should be on the next line. the posting
sometimes
get extra lines if the lines are too long. I did not modify these
lines.
Look at your original code and enter these lines like they were
originally
enetered.

6)
Also, in red font is these two msgbox commands:

MsgBox ("The selected project was successfully consolidated."),

MsgBox ("The workbook you selected is not a valid business plan
model."), vbCritical

I did not modify these lines. It looks like the lines wrapped and
should
be
one line. Look at the original code and enter these lines like they
appeared
in the original code.
--------------------------------------------------------------------------------------------
"Dean" wrote:

I think I figured out that you meant "It", not "I", below, Can you
modify
the code to use a path? Assume the path is:

C:\Documents and Settings\Dean\My Documents\AW\CONSOL TEMPLATE\files

Dean

"Dean" wrote in message
...
Unfortunately, I am not too swift with macros, so I'm a tad
confused.

Within the array, do the filenames need the .xls extension? If the
names
of the file really were test1 thru test60, would the array statement
need
them all listed or is it smart enough for a ... to work? By path, I
assume you mean the path to the folder where the files will be. If
so,
I
think we can ignore that for now, i.e., as long as the last time it
was
queried, we supplied the same folder, it will use that folder as a
default, right?

When you say:

I will make the ProjectFile Array easier to enter the names (they
will
be
shorter).

I don't know what you mean. Are you planning on doing some more
work?

I tried copying your macro into my file, just using, test1, test2,
and
test3 as the three project names in the array and I notice that,
every
time the

Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone,
SkipBlanks:=
_
False, Transpose:=False

command shows up, it is in red font. What could be the problem
there?

Also, in red font is these two msgbox commands:

MsgBox ("The selected project was successfully consolidated."),

MsgBox ("The workbook you selected is not a valid business plan
model."), vbCritical

Thanks!
Dean

"Joel" wrote in message
...
Dean: I split Consololidate Project into two subroutines. Just
moved
around
a little bit of the code and created a new subroutine consolidate.
My
plan
is to just call consolidate for testing.

You will need a new routine that will look something like
Consolidate_All.
Notice I put a blank string at the beginning of the Array to skip
the
first
array member which has an index of zero.

I think you may want to pass the new function the Path as a third
parameter.
I will make the ProjectFile Array easier to enter the names (they
will
be
shorter).

Let me know if you need additional help.

Sub Consolidate_All()
Dim n As Integer
ProjectFile = Array("","Filename1","Filename2",.........)
For n = 1 To 60
ProjectName = Range("projectName" & (n)).Value
Call Consolidate(ProjectName,ProjectFile(n))
Next n
End Sub



Sub Consolidate_Project()
Dim i As Integer
Dim t As Integer
Dim n As Integer
Application.EnableEvents = False
Application.ScreenUpdating = False

'
'Check to see if a file was selected
'
If FileName = "" Then
MsgBox ("Please select a project file to consolidate."),
vbCritical
Exit Sub
Else
End If
'
'Check to see if a project location was selected
'
t = 0
For i = 1 To 60
If Consolidate_Dialog.Controls("ProjectButton" & (i)).Value = True
Then
t = t + 1
Else
End If
Next i
If t = 0 Then
MsgBox ("Please select a project location to consolidate to."),
vbCritical
Exit Sub
End If
'
' Use the selected option button
'
n = 1
Do Until Consolidate_Dialog.Controls("ProjectButton" & (n)).Value =
True
n = n + 1
Loop
'
'Select the project to consolidate to.
'
If Sheets("Utility").Range("I" & (n + 40)) "" Then
Prj_Sht = Sheets("Utility").Range("I" & (n + 40))
Else
Prj_Sht = Sheets("Utility").Range("G" & (n + 40))
End If

call Consolidate(FileName, Prj_Sht)
end sub


Sub Consolidate(ByVal FileName as String, ByVal Prj_Sht as String)
'
'Perform the Consolidation
'
'Get the Project Worksheet ready for import.
Sheets(Prj_Sht).Activate
'ActiveSheet.Range("A1").ClearContents' changed by DA
ActiveSheet.Range("A1:CN230").ClearContents 'changed by DA

ConFile = FileNameOnly(FileName)
Workbooks.Open (FileName)
If SheetExists("Output") = True Then
'Import Project Name
Sheets("Plan Input").Select
ActiveSheet.Range("A2").Select
Application.CutCopyMode = False
Selection.Copy
ThisWorkbook.Activate
ActiveWorkbook.Sheets(Prj_Sht).Select
ActiveSheet.Range("A1").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone,
SkipBlanks:=