Hey guys new to POSTING in the forum. I'm usually pretty good at googling the results I need and scanning either Mr. Excel, Excel Forum, or stack overflow to get my answers respectively... I am self-taught and also reach out locally to my other excel friends when in need. THIS problem is driving me up the wall.
HERE is a LINK to an example sheet: https://drive.google.com/open?id=0B3...TFGbno4aHQ4NjQ
I have everything set so that in column A on sheet 1 a value of either X, Y, or "" will be returned based on a date range showing me tabled data for a promotion on another page by referencing a row number.
(For context X means the row references a promotion running between 2 dates EX: 6/16/16 - 6/16/17
Y means the row references a promotion starting after a date but with a currently undetermined end date EX:6/16/16 - ""
Finally "" or "Blank" just means there isn't a current or open promotion for this row and it should be ignored.)
Again THIS much of what I'm working on works perfectly, however, I'm trying to rig up a button to toggle showing "Y" that way it will display only Xs. I have been able to show X's ONLY with this formula =MATCH("x",Sheet1!$A$1:$A$98,0)
by trying to add Ys into the equation I have only been successful of returning a value of "TRUE" I've used things like =Match(OR("x","y"),Sheet1!$A$1:$A$98,0) and everything I can think of up to terribly awful abominations like
=IF(MATCH("x",Sheet1!$A$1:$A$98,0)+ROW(Sheet1!A1:A98)-1,MATCH("x",Sheet1!$A$1:$A$98,0)+ROW(Sheet1!A1:A98)-1,MATCH("y",Sheet1!$A$1:$A$98,0)+ROW(Sheet1!A1:A98)-1)
All this in an effort to return the row number if a value of X or Y is met in column A on sheet one. I havne't even had the chance to mess with the IF Yes / No toggle.
If you guy's could help me get THIS figured out I would be eternally grateful.
-Mike
Bookmarks