#1   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Formula Negation

How do I skip a formula, if left of cell does not equal a colon, followed by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula
  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Formula Negation

=IF(LEFT(T9,1)=":",DoYourFormula,"")

Vaya con Dios,
Chuck, CABGx3


"nastech" wrote in message
...
How do I skip a formula, if left of cell does not equal a colon, followed

by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula



  #3   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Formula Negation

thanks, already using that (but can use help with following formula)

=IF(LEFT(T10,1)=":",IF(AND(TODAY()DATE(MID(T10,2, 2)+100,MID(T10,4,2),MID(T10,6,2)-$H$7)),"dd",IF(BE10="T","dn",IF(BF10="T","up",IF(A K10<"","ck","")))))

works if: less than today, greater than to day, does not work if no date is
present.
sticks on false, and does not let rest of formula work
currently working on something like:

IF(ISNUMBER(MID((T10,2,6)),




"CLR" wrote:

=IF(LEFT(T9,1)=":",DoYourFormula,"")

Vaya con Dios,
Chuck, CABGx3


"nastech" wrote in message
...
How do I skip a formula, if left of cell does not equal a colon, followed

by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula




  #4   Report Post  
Posted to microsoft.public.excel.misc
pinmaster
 
Posts: n/a
Default Formula Negation

Try this:

=IF(AND(LEFT(T10,1)=":",ISNUMBER(ABS(MID(T10,2,6)) )),IF(TODAY()DATE(MID(T10,2,2)+100,MID(T10,4,2),M ID(T10,6,2)-$H$7),"dd",IF(BE10="t","dn",IF(BF10="t","up",IF(AK 10<"","ck","")))),IF(BE10="t","dn",IF(BF10="t","u p",IF(AK10<"","ck",""))))

HTH
JG

"nastech" wrote:

thanks, already using that (but can use help with following formula)

=IF(LEFT(T10,1)=":",IF(AND(TODAY()DATE(MID(T10,2, 2)+100,MID(T10,4,2),MID(T10,6,2)-$H$7)),"dd",IF(BE10="T","dn",IF(BF10="T","up",IF(A K10<"","ck","")))))

works if: less than today, greater than to day, does not work if no date is
present.
sticks on false, and does not let rest of formula work
currently working on something like:

IF(ISNUMBER(MID((T10,2,6)),




"CLR" wrote:

=IF(LEFT(T9,1)=":",DoYourFormula,"")

Vaya con Dios,
Chuck, CABGx3


"nastech" wrote in message
...
How do I skip a formula, if left of cell does not equal a colon, followed

by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula




  #5   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Formula Negation

Thankyou, !!

"pinmaster" wrote:

Try this:

=IF(AND(LEFT(T10,1)=":",ISNUMBER(ABS(MID(T10,2,6)) )),IF(TODAY()DATE(MID(T10,2,2)+100,MID(T10,4,2),M ID(T10,6,2)-$H$7),"dd",IF(BE10="t","dn",IF(BF10="t","up",IF(AK 10<"","ck","")))),IF(BE10="t","dn",IF(BF10="t","u p",IF(AK10<"","ck",""))))

HTH
JG

"nastech" wrote:

thanks, already using that (but can use help with following formula)

=IF(LEFT(T10,1)=":",IF(AND(TODAY()DATE(MID(T10,2, 2)+100,MID(T10,4,2),MID(T10,6,2)-$H$7)),"dd",IF(BE10="T","dn",IF(BF10="T","up",IF(A K10<"","ck","")))))

works if: less than today, greater than to day, does not work if no date is
present.
sticks on false, and does not let rest of formula work
currently working on something like:

IF(ISNUMBER(MID((T10,2,6)),




"CLR" wrote:

=IF(LEFT(T9,1)=":",DoYourFormula,"")

Vaya con Dios,
Chuck, CABGx3


"nastech" wrote in message
...
How do I skip a formula, if left of cell does not equal a colon, followed
by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula





  #6   Report Post  
Posted to microsoft.public.excel.misc
nastech
 
Posts: n/a
Default Formula Negation

follow up to followup, sorry for the 2nd, but didn't say much before, got
info from ~3 or 4 people, that helped alot, thanks

"pinmaster" wrote:

Try this:

=IF(AND(LEFT(T10,1)=":",ISNUMBER(ABS(MID(T10,2,6)) )),IF(TODAY()DATE(MID(T10,2,2)+100,MID(T10,4,2),M ID(T10,6,2)-$H$7),"dd",IF(BE10="t","dn",IF(BF10="t","up",IF(AK 10<"","ck","")))),IF(BE10="t","dn",IF(BF10="t","u p",IF(AK10<"","ck",""))))

HTH
JG

"nastech" wrote:

thanks, already using that (but can use help with following formula)

=IF(LEFT(T10,1)=":",IF(AND(TODAY()DATE(MID(T10,2, 2)+100,MID(T10,4,2),MID(T10,6,2)-$H$7)),"dd",IF(BE10="T","dn",IF(BF10="T","up",IF(A K10<"","ck","")))))

works if: less than today, greater than to day, does not work if no date is
present.
sticks on false, and does not let rest of formula work
currently working on something like:

IF(ISNUMBER(MID((T10,2,6)),




"CLR" wrote:

=IF(LEFT(T9,1)=":",DoYourFormula,"")

Vaya con Dios,
Chuck, CABGx3


"nastech" wrote in message
...
How do I skip a formula, if left of cell does not equal a colon, followed
by
7 numbers? thanks.

e.g.: date yymmdd
:060120

e.g.:
IF(LEFT(T9,7)= ??(:0000000),then do formula



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
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM
Help with macro formula and variable Huge project Excel Worksheet Functions 0 December 28th 04 01:27 AM


All times are GMT +1. The time now is 12:47 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"