Re: $$Excel-Macros$$ Cell Formatting

2011-11-22 Thread jmothilal
use this

=LEFT(A1,2):RIGHT(A1,2)

Mothilal.J



On Tue, Nov 22, 2011 at 2:57 PM, hemant hemantda...@yahoo.com wrote:

 Hi all

 I am supposed to enter data in say 22:11 format in Excel 2007.

 Is there any method by which i will enter only 2211 and cell shows
 it as 22:11.

 Thus it will save my time to enter : (Semicolon) frquently.

 I am supposed to enter lot of data in this format and thus has to
 enter : also.

 Thanks

 Regards
 Hemant Dange

 --
 FORUM RULES (934+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5)  Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE  : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




-- 

*J.Mothilal : **Universal Computer Systems : # 16, Brindavan Complex
:Otteri, Vellore-2*

-- 
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Cell Formatting

2011-11-22 Thread dguillett1

Right click sheet tabview codeinsert thischange column 3 to suit
Now IF the length of the string is 4 and it’s a number, it will be 
automatic.


Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count  1 Or Target.Column  3 Then Exit Sub
If IsNumeric(Target) And Len(Application.Trim(Target)) = 4 Then _
Target.Value = Left(Target, 2)  :  Right(Target, 2)
End Sub


Don Guillett
SalesAid Software
dguille...@gmail.com
-Original Message- 
From: hemant

Sent: Tuesday, November 22, 2011 3:27 AM
To: MS EXCEL AND VBA MACROS
Subject: $$Excel-Macros$$ Cell Formatting

Hi all

I am supposed to enter data in say 22:11 format in Excel 2007.

Is there any method by which i will enter only 2211 and cell shows
it as 22:11.

Thus it will save my time to enter : (Semicolon) frquently.

I am supposed to enter lot of data in this format and thus has to
enter : also.

Thanks

Regards
Hemant Dange

--
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please 
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will 
not get quick attention or may not be answered.


2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security 
measure.


4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited.


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.


--
To post to this group, send email to excel-macros@googlegroups.com 


--
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. 


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Cell Formatting

2011-11-22 Thread Ms-Exl-Learner .
Hi,

Just convert it to real time and apply time format as well.

=--(LEFT(A1,2):RIGHT(A1,2))

---
Ms.Exl.Learner
---

On Tue, Nov 22, 2011 at 5:30 PM, jmothilal gjmothi...@gmail.com wrote:

 use this

 =LEFT(A1,2):RIGHT(A1,2)

 Mothilal.J



 On Tue, Nov 22, 2011 at 2:57 PM, hemant hemantda...@yahoo.com wrote:

 Hi all

 I am supposed to enter data in say 22:11 format in Excel 2007.

 Is there any method by which i will enter only 2211 and cell shows
 it as 22:11.

 Thus it will save my time to enter : (Semicolon) frquently.

 I am supposed to enter lot of data in this format and thus has to
 enter : also.

 Thanks

 Regards
 Hemant Dange

 --
 FORUM RULES (934+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5)  Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE  : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --

 *J.Mothilal : **Universal Computer Systems : # 16, Brindavan Complex
 :Otteri, Vellore-2*


  --
 FORUM RULES (934+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com