Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > microsoft.public.excel.programming > #109085 > unrolled thread

Need Macro help to stop repeating some info

Started byksquirt <ksquirt.11cd69e8@excelbanter.com>
First post2016-07-14 16:10 +0100
Last post2016-07-14 20:48 +0100
Articles 3 — 3 participants

Back to article view | Back to microsoft.public.excel.programming


Contents

  Need Macro help to stop repeating some info ksquirt <ksquirt.11cd69e8@excelbanter.com> - 2016-07-14 16:10 +0100
    Re: Need Macro help to stop repeating some info ksquirt <ksquirt.11cd9418@excelbanter.com> - 2016-07-14 19:35 +0100
    Re: Need Macro help to stop repeating some info ksquirt <ksquirt.11cda228@excelbanter.com> - 2016-07-14 20:48 +0100

#109085 — Need Macro help to stop repeating some info

Fromksquirt <ksquirt.11cd69e8@excelbanter.com>
Date2016-07-14 16:10 +0100
SubjectNeed Macro help to stop repeating some info
Message-ID<ksquirt.11cd69e8@excelbanter.com>
I am trying to tweak a macro by adding new rows into the tabs and then
add them to the macros for compilation in an email.  The issue I have is
that the project level information is repeating into the package
information in the email and I only know enough to be dangerous with
macros.   The "Test Strategy" information is on the project AND the
package level and it should only be giving me the specific package
information in the email.  

I tried to attach the doc, but it's too large.  

Let me try to phrase it another way;  The macro should be giving me
unique information in each section in an email, but it's repeating the
information with each subsequent section.  The macro copies all info
into a separate tab and then compiles it into an email.  The separate
tab is working, but not the email.

Let me know how much of the macro you want to see and I can copy it
here.  I tried to just delete tabs and it broke the macro.




-- 
ksquirt

[toc] | [next] | [standalone]


#109086

Fromksquirt <ksquirt.11cd9418@excelbanter.com>
Date2016-07-14 19:35 +0100
Message-ID<ksquirt.11cd9418@excelbanter.com>
In reply to#109085
I think this is the section where I need to add something to separate
Pkg 1 from Pkg 2 and Pkg x (template page) in the email compilation.

'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
'X  Package issue text added to the email body
'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
strBody = strBody & _
"<font face=""Times New Roman"" size=""5""
color=""Black""><B><br>" & strPackageSheetName & _
" Install: " & strPackageInstall &
"</br></B></font><p></p>" & _
"<font face=""Times New Roman"" size=""2""
color=""Blue"">" & strPackage & "</font><p></p>"


End If
strBRD = ""
strFSD = ""
strReq_Traceability = ""
strTest_Plan = ""
strTest_Results = ""
strImplementation_Readiness = ""
strTOGPM = ""
strTestStrategyPkg = ""
strCP = ""
strITSPkg = ""
strPackage = ""



Next ws

Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub




-- 
ksquirt

[toc] | [prev] | [next] | [standalone]


#109087

Fromksquirt <ksquirt.11cda228@excelbanter.com>
Date2016-07-14 20:48 +0100
Message-ID<ksquirt.11cda228@excelbanter.com>
In reply to#109085
I have the full spreadsheet posted at the link below.

http://tinyurl.com/j6lyrub




-- 
ksquirt

[toc] | [prev] | [standalone]


Back to top | Article view | microsoft.public.excel.programming


csiph-web