ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   conditional formatting (https://www.excelbanter.com/excel-worksheet-functions/197526-conditional-formatting.html)

dkstech

conditional formatting
 
I've read most of the similar topic posts but still haven't quite figured out
what to do. I used to teach computer science so I know conditionals, I just
don't know how to put it in Excel ( we're using 2007). What I have is a
workbook set up for time keeping. If someone enters a P in any cell I need
it to Add 1 to the AL column of that row, but if they enter a lower case p it
needs to add only 0.5 to the AL column of the row. For the same cell, if the
value entered was X or x, the AK column of the row is updated by those same
values. Thanks for any responses!

T. Valko

conditional formatting
 
If someone enters a P in any cell

Well, you need to narrow it down from "any cell". An Excel 2007 worksheet
has billions of cells!

Try something like this:

For "P" :

=SUMPRODUCT(--(EXACT(A1:D1,"P")))

For "p" :

=SUMPRODUCT(--(EXACT(A1:D1,"p")))/2

Follow the same logic for X and x.

--
Biff
Microsoft Excel MVP


"dkstech" wrote in message
...
I've read most of the similar topic posts but still haven't quite figured
out
what to do. I used to teach computer science so I know conditionals, I
just
don't know how to put it in Excel ( we're using 2007). What I have is a
workbook set up for time keeping. If someone enters a P in any cell I
need
it to Add 1 to the AL column of that row, but if they enter a lower case p
it
needs to add only 0.5 to the AL column of the row. For the same cell, if
the
value entered was X or x, the AK column of the row is updated by those
same
values. Thanks for any responses!




dkstech

conditional formatting
 

Thank you. The reason I said "any cell" is that there are 242 possible
working days in our year, plus we can work on weekends sometimes as well - so
the range of cells that are used are actually in a matrix, not an array and
therefore didn't know how to really say that before.

Thank you for your reply - I'll give that a shot.

"T. Valko" wrote:

If someone enters a P in any cell


Well, you need to narrow it down from "any cell". An Excel 2007 worksheet
has billions of cells!

Try something like this:

For "P" :

=SUMPRODUCT(--(EXACT(A1:D1,"P")))

For "p" :

=SUMPRODUCT(--(EXACT(A1:D1,"p")))/2

Follow the same logic for X and x.

--
Biff
Microsoft Excel MVP


"dkstech" wrote in message
...
I've read most of the similar topic posts but still haven't quite figured
out
what to do. I used to teach computer science so I know conditionals, I
just
don't know how to put it in Excel ( we're using 2007). What I have is a
workbook set up for time keeping. If someone enters a P in any cell I
need
it to Add 1 to the AL column of that row, but if they enter a lower case p
it
needs to add only 0.5 to the AL column of the row. For the same cell, if
the
value entered was X or x, the AK column of the row is updated by those
same
values. Thanks for any responses!





T. Valko

conditional formatting
 
OK, it'll work on a matrix just as well:

=SUMPRODUCT(--(EXACT(A1:D5,"P")))

=SUMPRODUCT(--(EXACT(A1:D5,"p")))/2

--
Biff
Microsoft Excel MVP


"dkstech" wrote in message
...

Thank you. The reason I said "any cell" is that there are 242 possible
working days in our year, plus we can work on weekends sometimes as well -
so
the range of cells that are used are actually in a matrix, not an array
and
therefore didn't know how to really say that before.

Thank you for your reply - I'll give that a shot.

"T. Valko" wrote:

If someone enters a P in any cell


Well, you need to narrow it down from "any cell". An Excel 2007 worksheet
has billions of cells!

Try something like this:

For "P" :

=SUMPRODUCT(--(EXACT(A1:D1,"P")))

For "p" :

=SUMPRODUCT(--(EXACT(A1:D1,"p")))/2

Follow the same logic for X and x.

--
Biff
Microsoft Excel MVP


"dkstech" wrote in message
...
I've read most of the similar topic posts but still haven't quite
figured
out
what to do. I used to teach computer science so I know conditionals, I
just
don't know how to put it in Excel ( we're using 2007). What I have is
a
workbook set up for time keeping. If someone enters a P in any cell I
need
it to Add 1 to the AL column of that row, but if they enter a lower
case p
it
needs to add only 0.5 to the AL column of the row. For the same cell,
if
the
value entered was X or x, the AK column of the row is updated by those
same
values. Thanks for any responses!








All times are GMT +1. The time now is 06:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com