Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
BulaMan
 
Posts: n/a
Default Response to Frank: AM-PM Auto formatting

I did take a look at pearsons sight - might be helpful if I could do VBA,
maybe macros. (1) How about a trick of auto adding 12 hours withing the
formatting? Possible? (2) Can I get a crash course - like 30minutes or less
to be able to attempt either macros or VBA for this? Thank you Frank -
BULAMAN

  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
1) Not possible within a format.
2). Start with: http://www.mvps.org/dmcritchie/excel/getstarted.htm

--
Regards
Frank Kabel
Frankfurt, Germany

BulaMan wrote:
I did take a look at pearsons sight - might be helpful if I could do
VBA, maybe macros. (1) How about a trick of auto adding 12 hours
withing the formatting? Possible? (2) Can I get a crash course - like
30minutes or less to be able to attempt either macros or VBA for
this? Thank you Frank - BULAMAN



  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A1:H10")) Is Nothing Then
With Target
If .Value < 1 Then
If .Value < 0.5 Then
.Value = 0.5 + .Value
End If
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.



--

HTH

RP
(remove nothere from the email address if mailing direct)


"BulaMan" wrote in message
...
I did take a look at pearsons sight - might be helpful if I could do VBA,
maybe macros. (1) How about a trick of auto adding 12 hours withing the
formatting? Possible? (2) Can I get a crash course - like 30minutes or

less
to be able to attempt either macros or VBA for this? Thank you Frank -
BULAMAN



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
Auto date changing in Excel is maddening brhicks Charts and Charting in Excel 3 December 16th 04 02:54 PM
Auto Calculation Automatically Turns Off???? Jeff K. Excel Discussion (Misc queries) 2 December 15th 04 01:39 AM
Auto Fill Options Patti B Excel Discussion (Misc queries) 3 December 9th 04 12:49 AM
Adding more than three Conditions to 'Conditional Formatting' David McRitchie Excel Discussion (Misc queries) 1 November 27th 04 06:03 PM
Cells losing formatting BdgBill Excel Discussion (Misc queries) 1 November 26th 04 08:03 AM


All times are GMT +1. The time now is 03:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"