matthewlouis

Active Member
Joined
Mar 28, 2014
Messages
374
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Column R18 uses the formula =IFERROR(IF(D18<$H$3,"Failed",""),"")

D = current price

$H$3 is the price I am comparing D18 to. $H$3 is constant, of course

Once the price in Column D becomes LESS THAN the fixed price of $H$3, the cell in R18 says "FAILED." That's great. But when I copy the formula down and the cells in Column D become > than $H$3 again, Column D's price shows up again . . . I don't want that. Once a cell in Column R says "FAILED, I want every Column R cell AFTER that to say "FAILED" regardless if any of the following prices in Column D show up > $H$3 somewhere down the column.

This is messing up my Lookup formula in R4 =IFERROR(VLOOKUP("Failed",$R$6:$R$133,1,FALSE),"") because it's looking up everything AFTER R18 and including it in the Lookup.

Any ideas? Thanks in advance!!
 
Last edited:
Hi Joe,

xlqhigh is the XLQ program's formula for returning the high from stock symbol from yahoo

My VBA knowledge is very limited but I was able to paste your code in VBA, ran what you said for B20, and it returned
35-69-82-82-79-82

<tbody>
</tbody>

Does this tell you anything? Thanks for all your help on this!
 
Last edited:
Upvote 0

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Thank you Crystal, sorry I couldn't show the sheet . . . xlq just won;t work with anyone else without a subscription so you wouldn't be able to see the sheet formulas. Appreciate your help on this!!
 
Upvote 0
xlqhigh is the formula for returning the high from yahoo on the symbol.
Where/how is that formula defined?
Can you post the actual formula behind xlqhigh?

I do not know how to do VBA but I pasted your code in VBA, ran what you said for B20 it returned
35-69-82-82-79-82

<tbody>
</tbody>
That tells me that that the following is actually in cell B20:
#ERROR
which is not blank, but appears to be some sort of error code.

If you are not seeing anything appearing in that cell, then you probably have something like Conditional Formatting hiding the error result.
Can you check to see what kind of Conditional Formatting or Custom Formatting is being applied to cell B20?
 
Last edited:
Upvote 0
Good call, Joe. Yes, I just deleted a conditional format in B20 and #ERROR shows up. You are correct, there is something in that cell.

I just used =IFERROR(IF(A20=$H$3,xlqHigh($A$1,"Yahoo"),xlqhHigh($A$1,A20,"Yahoo")),"") to see if that would make the cell blank . . . no, it still shows #ERROR

Note that in that formula it is saying if today's date ($H$3) is = to A20 (date), then show today's high for the S&P 500. If A20 is not today, then show the high for the date in Column A. That's what xlqh is . . . it adds the h to xlq to tell you the date is not today.
 
Last edited:
Upvote 0
I just deleted a conditional format in B20 and #ERROR shows up.
What was the exact Conditional Formatting formula?
We should be able to employ the same logic in your formula.
 
Upvote 0
Not much of a formula . . . simple . . . If the cell has #ERROR , make the color white (so it would not be visible) -- a terrible way to condition that cell, I know now.

It would seem I need a formula (not a condition) that would make the cell blank for those dates in the future, no?
 
Last edited:
Upvote 0
I wonder if that formula is actually returning the literal text #ERROR .
What does this formula return?
=B20="#ERROR "

If it returns TRUE, then you can keep everything as it was, and just update your original formula to check to see if B20 equals "#ERROR ".
If you need help updated that original formula, please let us know what you what you would like the original formula to return when this happens.
 
Upvote 0
OK, put that conditional formula =B20="#ERROR " in there and it does NOT return True . . . returns #ERROR again.

I would need that cell to be blank since it says "#ERROR and then I believe that orginal formula will work.
 
Last edited:
Upvote 0
Does this return TRUE?
=ISERROR(B20)

What does this return?
=IFERROR(B20,"Error found!")

 
Last edited:
Upvote 0
Does this return TRUE?
=ISERROR(B20)
This returns FALSE

What does this return?
=IFERROR(B20,"Error found!")
This returns a blank
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top