Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 343
Default Offsetting a formulas result.

I would like to put a formula in Column AH (the formula would go down 500
rows) that would look at Column H and if it were blank place the text "NOT
CALLED" in column H. Is that possible?


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 343
Default Offsetting a formulas result.

I should have mentioned, I can not put a formula in column H

"Patrick C. Simonds" wrote in message
...
I would like to put a formula in Column AH (the formula would go down 500
rows) that would look at Column H and if it were blank place the text "NOT
CALLED" in column H. Is that possible?


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,117
Default Offsetting a formulas result.

a formula can only affect the cell it's in. so if you can't have a
formula in column H, as far as i know you're out of luck with
formulas.
i think you're looking at a macro.
hope that helps
:)
susan



On Sep 8, 2:12*pm, "Patrick C. Simonds" wrote:
I should have mentioned, I can not put a formula in column H

"Patrick C. Simonds" wrote in ...



I would like to put a formula in Column AH (the formula would go down 500
rows) that would look at Column H and if it were blank place the text "NOT
CALLED" in column H. Is that possible?- Hide quoted text -


- Show quoted text -


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,117
Default Offsetting a formulas result.

Option Explicit

Sub Patrick()

Dim MyRange As Range
Dim c As Range

Set MyRange = ActiveSheet.Range("h1:h500")

For Each c In MyRange
If c.Value = "" Then
c.Value = "NOT CALLED"
End If
Next c

End Sub
'=======================
you could set this up as a button on the sheet & press it, say, before
exiting the sheet. or an auto_open sub that does it when you open the
sheet. or a worksheet_change sub that would work when things were
changed on the sheet.
lots of options.
susan


On Sep 8, 2:52*pm, Susan wrote:
a formula can only affect the cell it's in. *so if you can't have a
formula in column H, as far as i know you're out of luck with
formulas.
i think you're looking at a macro.
hope that helps
:)
susan

On Sep 8, 2:12*pm, "Patrick C. Simonds" wrote:



I should have mentioned, I can not put a formula in column H


"Patrick C. Simonds" wrote in ...


I would like to put a formula in Column AH (the formula would go down 500
rows) that would look at Column H and if it were blank place the text "NOT
CALLED" in column H. Is that possible?- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


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
Why do formulas appear and not the result? Brian Cook Excel Discussion (Misc queries) 4 May 29th 09 10:40 PM
Offsetting and HLOOKUP KellyB Excel Worksheet Functions 5 January 29th 08 07:09 PM
Offsetting formulas for consecutive data sets [email protected] Excel Discussion (Misc queries) 0 August 14th 06 09:53 AM
Offsetting the Rows of a VLookup Result John Excel Worksheet Functions 4 July 13th 05 04:08 AM
offsetting periods in chart saturnin02 Excel Discussion (Misc queries) 2 January 26th 05 07:53 PM


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