Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Reference a cell in an OR Formula

Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Reference a cell in an OR Formula

Just point at T$2:

=OR(T8610<-T$2,T8610T$2)



rhhince wrote:

Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Reference a cell in an OR Formula

You could use something like this, too:

=(abs(t8610)<t$2)
or
=(abs(t8610)<abs(t$2))
to allow positive/negative numbers in T2.

Dave Peterson wrote:

Just point at T$2:

=OR(T8610<-T$2,T8610T$2)

rhhince wrote:

Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)


--

Dave Peterson


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 620
Default Reference a cell in an OR Formula

Replace < by in your ABS() formulae, Dave, to meet the OP's requirement.
--
David Biddulph

"Dave Peterson" wrote in message
...
You could use something like this, too:

=(abs(t8610)<t$2)
or
=(abs(t8610)<abs(t$2))
to allow positive/negative numbers in T2.

Dave Peterson wrote:

Just point at T$2:

=OR(T8610<-T$2,T8610T$2)

rhhince wrote:

Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)


--

Dave Peterson


--

Dave Peterson



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Reference a cell in an OR Formula

Oops.

But that would have been obvious after a bit of testing--I guess you know that I
didn't test!

David Biddulph wrote:

Replace < by in your ABS() formulae, Dave, to meet the OP's requirement.
--
David Biddulph

"Dave Peterson" wrote in message
...
You could use something like this, too:

=(abs(t8610)<t$2)
or
=(abs(t8610)<abs(t$2))
to allow positive/negative numbers in T2.

Dave Peterson wrote:

Just point at T$2:

=OR(T8610<-T$2,T8610T$2)

rhhince wrote:

Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,440
Default Reference a cell in an OR Formula

=IF(OR(T8610<-T2,T8610T2),"outside range","inside range")

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"rhhince" wrote in message ps.com...
| Does anyone know how to reference a cell number in an OR formula?
| I am trying to replace the number 75 to reference a specific cell T$2
| instead, so I can change the values in the column dynamically an save a
| lot of steps. I somehow think the ampersand & could work, but I just
| don't know how.
|
| =OR(T8610<-75,T861075)
|


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,440
Default Reference a cell in an OR Formula

do include the $ signs in T2

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Niek Otten" wrote in message ...
| =IF(OR(T8610<-T2,T8610T2),"outside range","inside range")
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "rhhince" wrote in message ps.com...
|| Does anyone know how to reference a cell number in an OR formula?
|| I am trying to replace the number 75 to reference a specific cell T$2
|| instead, so I can change the values in the column dynamically an save a
|| lot of steps. I somehow think the ampersand & could work, but I just
|| don't know how.
||
|| =OR(T8610<-75,T861075)
||
|
|


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Reference a cell in an OR Formula

Please, try to expand the question.
If a cell has a value of 75 (or if ABS(cell value) 75 ) what cell do you
want to alter?
You will need a macro to change the ***same*** cell.
best wsihes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"rhhince" wrote in message
ps.com...
Does anyone know how to reference a cell number in an OR formula?
I am trying to replace the number 75 to reference a specific cell T$2
instead, so I can change the values in the column dynamically an save a
lot of steps. I somehow think the ampersand & could work, but I just
don't know how.

=OR(T8610<-75,T861075)



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
Cell References [email protected] Excel Discussion (Misc queries) 2 November 15th 06 11:37 PM
Custom functions calculating time arguments Help Desperate Bill_De Excel Worksheet Functions 12 April 25th 06 02:22 AM
Function/ formula to output a cell reference Creator Excel Worksheet Functions 19 February 17th 06 06:39 PM
copied formula has correct cell reference, but result of original lvito Excel Worksheet Functions 1 October 14th 05 04:37 PM
Reference to One Cell stays the same in Different Formula ISMEGORDO Excel Discussion (Misc queries) 10 June 16th 05 11:13 PM


All times are GMT +1. The time now is 07:19 PM.

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"