[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Help with Excel VB Macro/ Inserting timestamp with specific font & Size

Asked by xidx in VB Controls, Microsoft Excel Spreadsheet Software, Spreadsheet Software

Tags: Excel, Macro, Timestamp, VB, 2003, VBA, Visual Basic, font, format

Experts,
I am a VB noob and need some help with a basic task..

I have a macro that is inserting a time stamp into an excel area/object.

Is there any way to specify a font and size with this code, so the time/date are larger?

Thanks!
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
Private Sub Workbook_Open()
On Error GoTo EH
 
Init
 
myTimeStamp = Format(Now(), "mm/dd/yyyy  hh:mm:ss am/pm")
 
Dim Str As String
myAddress = ActiveCell.Address
'Flag = True
Dim Obj As Object
Dim b, c As Integer
Dim cString, d As String
Dim yy, zz As Integer
           
Set Obj = ActiveSheet.UsedRange
cString = Obj.Address
b = Len(cString)
c = InStr(1, cString, ":")
d = Mid(cString, c + 1, b - c)
          
ActiveSheet.Range(d).Activate
yy = ActiveCell.Row
zz = ActiveCell.Column
 
For i = 1 To yy
For j = 1 To zz
           
   If ActiveSheet.Cells(i, j) = "" Then
      'Do Nothing
   Else: Str = Str & ActiveSheet.Cells(i, j)
   End If
Next j
Next i
ActiveSheet.Range(myAddress).Select
myDocAllAtOpen = Str
   
myTimeStamp = Format(Now(), "mm/dd/yyyy  hh:mm:ss am/pm") 'reset with new timestamp since document has changed
 
 
 
myDocAllAtOpen = ActiveSheet.Content
[+][-]08/17/09 08:33 AM, ID: 25115461Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: VB Controls, Microsoft Excel Spreadsheet Software, Spreadsheet Software
Tags: Excel, Macro, Timestamp, VB, 2003, VBA, Visual Basic, font, format
Sign Up Now!
Solution Provided By: joaoalmeida
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625