Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
DTE
 
Posts: n/a
Default Conditional format sheet data

Hi,
I'd appreciate some advise on a formula to conditionally
format all records on my sheet (i.e. data in rows)when
this senario occurs:
1) When there is a date in Column AC for that row, and
2) When there is a N (for no)in AD for that row.
Also, there must be a date in AE for that row if Y (for
yes)is in AD.
I would like to apply the formula to the entire sheet to
get the effect of a 'dim out'when record is considered
complete.
Expert advise is appreciated as there are way too many
records to manually check for compliance and be certain of
future mass data input.

  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Select the range you want to format,do formatconditional formatting, formula
is

=AND(ISNUMBER($AC$2),$AD$2="N")

if you need the Y as well

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER($A E$2),$AD$2="Y"))


Regards,

Peo Sjoblom

"DTE" wrote:

Hi,
I'd appreciate some advise on a formula to conditionally
format all records on my sheet (i.e. data in rows)when
this senario occurs:
1) When there is a date in Column AC for that row, and
2) When there is a N (for no)in AD for that row.
Also, there must be a date in AE for that row if Y (for
yes)is in AD.
I would like to apply the formula to the entire sheet to
get the effect of a 'dim out'when record is considered
complete.
Expert advise is appreciated as there are way too many
records to manually check for compliance and be certain of
future mass data input.


  #3   Report Post  
DTE
 
Posts: n/a
Default

Thanks Peo but it did not take effect. Does this make any
better sense?
If there is a date in AC and a N in AD then format applies.
If there is a date in AC and a Y in AD then format applies
only when there is a mandatory date in AE (if blank no
format).

So basically;
AC = blank or date (no format)
AC = date (no format)
AC = date plus N in AD (format applies)
AC = date plus Y in AD format only if AE has a date.

This occurs over all rows independatly.

I'm still having trouble with this one!

Thanks

-----Original Message-----
Select the range you want to format,do formatconditional

formatting, formula
is

=AND(ISNUMBER($AC$2),$AD$2="N")

if you need the Y as well

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER

($AE$2),$AD$2="Y"))


Regards,

Peo Sjoblom

"DTE" wrote:

Hi,
I'd appreciate some advise on a formula to

conditionally
format all records on my sheet (i.e. data in rows)when
this senario occurs:
1) When there is a date in Column AC for that row, and
2) When there is a N (for no)in AD for that row.
Also, there must be a date in AE for that row if Y (for
yes)is in AD.
I would like to apply the formula to the entire sheet

to
get the effect of a 'dim out'when record is considered
complete.
Expert advise is appreciated as there are way too many
records to manually check for compliance and be certain

of
future mass data input.


.

  #4   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Try this amendment

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER($A E$2),ISNUMBER($AC$2),$AD$2="Y"))

date (or number since excel dates are numbers, if you use text dates post
back) in AC2 AND N in AD2 format OR date in AC2 AND date in AE2 AND Y in AD2

to apply this over the whole sheet, click the select all button and use

=OR(AND(ISNUMBER($AC1),$AD1="N"),AND(ISNUMBER($AE1 ),ISNUMBER($AC1),$AD1="Y"))


regards,

Peo Sjoblom



"DTE" wrote:

Thanks Peo but it did not take effect. Does this make any
better sense?
If there is a date in AC and a N in AD then format applies.
If there is a date in AC and a Y in AD then format applies
only when there is a mandatory date in AE (if blank no
format).

So basically;
AC = blank or date (no format)
AC = date (no format)
AC = date plus N in AD (format applies)
AC = date plus Y in AD format only if AE has a date.

This occurs over all rows independatly.

I'm still having trouble with this one!

Thanks

-----Original Message-----
Select the range you want to format,do formatconditional

formatting, formula
is

=AND(ISNUMBER($AC$2),$AD$2="N")

if you need the Y as well

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER

($AE$2),$AD$2="Y"))


Regards,

Peo Sjoblom

"DTE" wrote:

Hi,
I'd appreciate some advise on a formula to

conditionally
format all records on my sheet (i.e. data in rows)when
this senario occurs:
1) When there is a date in Column AC for that row, and
2) When there is a N (for no)in AD for that row.
Also, there must be a date in AE for that row if Y (for
yes)is in AD.
I would like to apply the formula to the entire sheet

to
get the effect of a 'dim out'when record is considered
complete.
Expert advise is appreciated as there are way too many
records to manually check for compliance and be certain

of
future mass data input.


.


  #5   Report Post  
DTE
 
Posts: n/a
Default

That worked! Very, very helpful...Thank you!

-----Original Message-----
Try this amendment

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER

($AE$2),ISNUMBER($AC$2),$AD$2="Y"))

date (or number since excel dates are numbers, if you use

text dates post
back) in AC2 AND N in AD2 format OR date in AC2 AND date

in AE2 AND Y in AD2

to apply this over the whole sheet, click the select all

button and use

=OR(AND(ISNUMBER($AC1),$AD1="N"),AND(ISNUMBER

($AE1),ISNUMBER($AC1),$AD1="Y"))


regards,

Peo Sjoblom



"DTE" wrote:

Thanks Peo but it did not take effect. Does this make

any
better sense?
If there is a date in AC and a N in AD then format

applies.
If there is a date in AC and a Y in AD then format

applies
only when there is a mandatory date in AE (if blank no
format).

So basically;
AC = blank or date (no format)
AC = date (no format)
AC = date plus N in AD (format applies)
AC = date plus Y in AD format only if AE has a date.

This occurs over all rows independatly.

I'm still having trouble with this one!

Thanks

-----Original Message-----
Select the range you want to format,do

formatconditional
formatting, formula
is

=AND(ISNUMBER($AC$2),$AD$2="N")

if you need the Y as well

=OR(AND(ISNUMBER($AC$2),$AD$2="N"),AND(ISNUMBER

($AE$2),$AD$2="Y"))


Regards,

Peo Sjoblom

"DTE" wrote:

Hi,
I'd appreciate some advise on a formula to

conditionally
format all records on my sheet (i.e. data in rows)

when
this senario occurs:
1) When there is a date in Column AC for that row,

and
2) When there is a N (for no)in AD for that row.
Also, there must be a date in AE for that row if Y

(for
yes)is in AD.
I would like to apply the formula to the entire

sheet
to
get the effect of a 'dim out'when record is

considered
complete.
Expert advise is appreciated as there are way too

many
records to manually check for compliance and be

certain
of
future mass data input.


.


.

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 of data tables in charts [email protected] Charts and Charting in Excel 2 January 25th 05 03:56 PM
Transfer data from sheet to sheet Jenn Excel Discussion (Misc queries) 4 January 20th 05 03:07 PM
Automatic cell increment with data from sheet 1 to sheet 2 Big G Excel Worksheet Functions 2 December 20th 04 05:59 PM
pull data from sheet two, then fill in the data to sheet one (part Jim Excel Worksheet Functions 3 December 11th 04 04:51 AM
How do I conditional format for data that's repeated Putty Excel Worksheet Functions 8 November 2nd 04 09:04 PM


All times are GMT +1. The time now is 12:59 AM.

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"