Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Cursor position / Cond. Format

Hi, is there a formula/ way to cond. format a line / cell.. where the cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1

  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Cursor position / Cond. Format

What exactly are you trying to do? Do you want to highlight the activecell,
or only show if the current cell meets a particular condition? Or something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where the

cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1



  #3   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Cursor position / Cond. Format

Hi, looking for way to hilite row cursor currently in. (might end up only
working into few cells in line that are cond. format free). otherwise, going
blind trying to skim thru sheet, doing work cannot visual all left to right,
have to place cursor on cell in question, go back to left to hilite row, to
see other items every time want to review each line... am thinking ms could
have included a hilite option that does not destroy / use up cond. formatting.

options: like hilited line when select whole row, except some blur shows;
varied thickness choice of top / bottom border lines would be good, maybe
some gray over but not blur top/bottom lines.

had received some code for temp cond. formatting, but even the one that did
not destroy other formatting, ended up destroying it after while/ doing
functions during cut-copy-paste... SEE A COND. FORMAT AS the possible
safest way to do it, short of proper programming. Thanks. code was: (was
not able to combine date code)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static mRow As Long
If mRow < 0 Then
Rows(mRow).Interior.ColorIndex = xlNone
End If
mRow = Target.Row
Rows(mRow).Interior.ColorIndex = 22
End Sub


XXXXXXXXXXXXXXXXXXXXXXXXXXXX

"Bob Phillips" wrote:

What exactly are you trying to do? Do you want to highlight the activecell,
or only show if the current cell meets a particular condition? Or something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where the

cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1




  #4   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Cursor position / Cond. Format

date code is:

Option Explicit
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count 1 Then Exit Sub
If Target.Row < 91 Then Exit Sub
If Me.Cells(.Row, "A").Value = "." Then Exit Sub
If Not Intersect(Me.Range("BB:BC"), .Cells) Is Nothing Then
Application.EnableEvents = False
With Me.Cells(.Row, "BL")
.NumberFormat = "dd"
.Value = Now
End With
Application.EnableEvents = True
End If
End With
End Sub

  #5   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Cursor position / Cond. Format

You should get a copy of Chip Pearson's Rowliner addin then, I think that
overlays a shape on the active row
http://www.cpearson.com/excel/RowLiner.htm

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, looking for way to hilite row cursor currently in. (might end up only
working into few cells in line that are cond. format free). otherwise,

going
blind trying to skim thru sheet, doing work cannot visual all left to

right,
have to place cursor on cell in question, go back to left to hilite row,

to
see other items every time want to review each line... am thinking ms

could
have included a hilite option that does not destroy / use up cond.

formatting.

options: like hilited line when select whole row, except some blur shows;
varied thickness choice of top / bottom border lines would be good, maybe
some gray over but not blur top/bottom lines.

had received some code for temp cond. formatting, but even the one that

did
not destroy other formatting, ended up destroying it after while/ doing
functions during cut-copy-paste... SEE A COND. FORMAT AS the possible
safest way to do it, short of proper programming. Thanks. code was:

(was
not able to combine date code)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static mRow As Long
If mRow < 0 Then
Rows(mRow).Interior.ColorIndex = xlNone
End If
mRow = Target.Row
Rows(mRow).Interior.ColorIndex = 22
End Sub


XXXXXXXXXXXXXXXXXXXXXXXXXXXX

"Bob Phillips" wrote:

What exactly are you trying to do? Do you want to highlight the

activecell,
or only show if the current cell meets a particular condition? Or

something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where the

cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1








  #6   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Cursor position / Cond. Format

Hi, thanks for your info, the utility was the best choice I've seen. almost
perfect.

had conflict not sure of cause, came up with repeated blue screen-of-death..
1st might be: other running apps, (using WinXP sp2)
(maybe: FUNCRES.XLA quote price lookup app, or Askaray.com button bar
manager),
2nd: ? prob with app, lockup/ not working on left / top of half's of window
"Freeze Screen".
if have any info on proper installation, otherwise will recheck with author.
thanks.

"Bob Phillips" wrote:

You should get a copy of Chip Pearson's Rowliner addin then, I think that
overlays a shape on the active row
http://www.cpearson.com/excel/RowLiner.htm

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, looking for way to hilite row cursor currently in. (might end up only
working into few cells in line that are cond. format free). otherwise,

going
blind trying to skim thru sheet, doing work cannot visual all left to

right,
have to place cursor on cell in question, go back to left to hilite row,

to
see other items every time want to review each line... am thinking ms

could
have included a hilite option that does not destroy / use up cond.

formatting.

options: like hilited line when select whole row, except some blur shows;
varied thickness choice of top / bottom border lines would be good, maybe
some gray over but not blur top/bottom lines.

had received some code for temp cond. formatting, but even the one that

did
not destroy other formatting, ended up destroying it after while/ doing
functions during cut-copy-paste... SEE A COND. FORMAT AS the possible
safest way to do it, short of proper programming. Thanks. code was:

(was
not able to combine date code)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static mRow As Long
If mRow < 0 Then
Rows(mRow).Interior.ColorIndex = xlNone
End If
mRow = Target.Row
Rows(mRow).Interior.ColorIndex = 22
End Sub


XXXXXXXXXXXXXXXXXXXXXXXXXXXX

"Bob Phillips" wrote:

What exactly are you trying to do? Do you want to highlight the

activecell,
or only show if the current cell meets a particular condition? Or

something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where the
cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1







  #7   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Cursor position / Cond. Format

I am afraid I know nothing about Askaray.com button bar, but I did install
Rowliner once and I always have FUNCRES.XLA running, and I do not recall any
conflicts, so I guess the former is the more likely problem. You should
install Rowliner (ToolsAddins), not just load it.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, thanks for your info, the utility was the best choice I've seen.

almost
perfect.

had conflict not sure of cause, came up with repeated blue

screen-of-death..
1st might be: other running apps, (using WinXP sp2)
(maybe: FUNCRES.XLA quote price lookup app, or Askaray.com button bar
manager),
2nd: ? prob with app, lockup/ not working on left / top of half's of

window
"Freeze Screen".
if have any info on proper installation, otherwise will recheck with

author.
thanks.

"Bob Phillips" wrote:

You should get a copy of Chip Pearson's Rowliner addin then, I think

that
overlays a shape on the active row
http://www.cpearson.com/excel/RowLiner.htm

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, looking for way to hilite row cursor currently in. (might end up

only
working into few cells in line that are cond. format free).

otherwise,
going
blind trying to skim thru sheet, doing work cannot visual all left to

right,
have to place cursor on cell in question, go back to left to hilite

row,
to
see other items every time want to review each line... am thinking ms

could
have included a hilite option that does not destroy / use up cond.

formatting.

options: like hilited line when select whole row, except some blur

shows;
varied thickness choice of top / bottom border lines would be good,

maybe
some gray over but not blur top/bottom lines.

had received some code for temp cond. formatting, but even the one

that
did
not destroy other formatting, ended up destroying it after while/

doing
functions during cut-copy-paste... SEE A COND. FORMAT AS the

possible
safest way to do it, short of proper programming. Thanks. code was:

(was
not able to combine date code)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static mRow As Long
If mRow < 0 Then
Rows(mRow).Interior.ColorIndex = xlNone
End If
mRow = Target.Row
Rows(mRow).Interior.ColorIndex = 22
End Sub


XXXXXXXXXXXXXXXXXXXXXXXXXXXX

"Bob Phillips" wrote:

What exactly are you trying to do? Do you want to highlight the

activecell,
or only show if the current cell meets a particular condition? Or

something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where

the
cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1









  #8   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Cursor position / Cond. Format

Hi, thanks, did use add-ins before, if you want to see if have tips, ideas,
... to trade (if into the market... or not.. ) can trade im names on email:
nasgentech at yahoo
thanks

"Bob Phillips" wrote:

I am afraid I know nothing about Askaray.com button bar, but I did install
Rowliner once and I always have FUNCRES.XLA running, and I do not recall any
conflicts, so I guess the former is the more likely problem. You should
install Rowliner (ToolsAddins), not just load it.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, thanks for your info, the utility was the best choice I've seen.

almost
perfect.

had conflict not sure of cause, came up with repeated blue

screen-of-death..
1st might be: other running apps, (using WinXP sp2)
(maybe: FUNCRES.XLA quote price lookup app, or Askaray.com button bar
manager),
2nd: ? prob with app, lockup/ not working on left / top of half's of

window
"Freeze Screen".
if have any info on proper installation, otherwise will recheck with

author.
thanks.

"Bob Phillips" wrote:

You should get a copy of Chip Pearson's Rowliner addin then, I think

that
overlays a shape on the active row
http://www.cpearson.com/excel/RowLiner.htm

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, looking for way to hilite row cursor currently in. (might end up

only
working into few cells in line that are cond. format free).

otherwise,
going
blind trying to skim thru sheet, doing work cannot visual all left to
right,
have to place cursor on cell in question, go back to left to hilite

row,
to
see other items every time want to review each line... am thinking ms
could
have included a hilite option that does not destroy / use up cond.
formatting.

options: like hilited line when select whole row, except some blur

shows;
varied thickness choice of top / bottom border lines would be good,

maybe
some gray over but not blur top/bottom lines.

had received some code for temp cond. formatting, but even the one

that
did
not destroy other formatting, ended up destroying it after while/

doing
functions during cut-copy-paste... SEE A COND. FORMAT AS the

possible
safest way to do it, short of proper programming. Thanks. code was:
(was
not able to combine date code)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static mRow As Long
If mRow < 0 Then
Rows(mRow).Interior.ColorIndex = xlNone
End If
mRow = Target.Row
Rows(mRow).Interior.ColorIndex = 22
End Sub


XXXXXXXXXXXXXXXXXXXXXXXXXXXX

"Bob Phillips" wrote:

What exactly are you trying to do? Do you want to highlight the
activecell,
or only show if the current cell meets a particular condition? Or
something
else?

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"nastech" wrote in message
...
Hi, is there a formula/ way to cond. format a line / cell.. where

the
cursor
is currently located?

got so far for cond. format, select sheet / line, enter:
=LEFT($A1,1)+0=1










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
Conditional Format Not Working KMH Excel Discussion (Misc queries) 0 December 22nd 05 05:32 PM
Cond Format & helper-cell based "duplicate rec" tricked by content Dennis Excel Discussion (Misc queries) 3 December 16th 05 06:55 PM
can't format cell - have tried unlocking and unprotecting griffin Excel Discussion (Misc queries) 1 April 5th 05 02:11 AM
why does currency format change to number format? Cassie Excel Discussion (Misc queries) 3 March 18th 05 06:57 PM
Keep custom format in new worksheet Buddy Excel Discussion (Misc queries) 2 March 14th 05 10:03 AM


All times are GMT +1. The time now is 03:53 AM.

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

About Us

"It's about Microsoft Excel"