Forum Discussion
Comparing and retrieving locations NOT visited using two excel docs
Hi jennjax1010
In your first sample in Schedule where were numbers and here are texts. Thus the condition in the middle of the formula as value>0 shall be changed on len(value)>0
=IFERROR(
INDEX(Schedule!$A$2:$A$208,
AGGREGATE(15,6,1/((COUNTIFS('Export Report'!$G$2:$G$7529,$B4,'Export Report'!$B$2:$B$7529,Schedule!$A$2:$A$208)=0)/
LEN(INDEX(Schedule!$B$2:$H$208,0,MATCH($B4,Schedule!$B$1:$H$1,0)))>0)*
(ROW(Schedule!$A$2:$A$208)-ROW(Schedule!$A$1)),COLUMN()-COLUMN($B$4))),
"")
Please check attached.
SergeiBaklan Ahhh!! I wasnt aware, thank you so much! Making note of that :)
It worked!!!!
- SergeiBaklanJun 17, 2019Diamond Contributor
jennjax1010 , you are welcome
- jennjax1010Jun 17, 2019Copper Contributor
SergeiBaklan Thank you will give it a go :)
- SergeiBaklanJun 14, 2019Diamond Contributor
You shall change the reference on day of the week as well, from $B4 on B$4
=IFERROR( INDEX(Schedule!$A$2:$A$208, AGGREGATE(15,6, 1/((COUNTIFS('Export Report'!$G$2:$G$7529,B$4,'Export Report'!$B$2:$B$7529,Schedule!$A$2:$A$208)=0)/ LEN(INDEX(Schedule!$B$2:$H$208,0,MATCH(B$4,Schedule!$B$1:$H$1,0)))>0)* (ROW(Schedule!$A$2:$A$208)-ROW(Schedule!$A$1)),ROW()-ROW($B$4) ) ), "")Please check attached
- jennjax1010Jun 12, 2019Copper Contributor
SergeiBaklan Thought you were rid of me :) Just out of curiosity...is it possible to have the Not Visited Tab list display vertically, with the days of the week as column headers instead of a horizontal chart? I attempted to do so myself within the formula changing the row/column info but while its generating data as a result its not generating it properly.
Current formula =IFERROR(INDEX(Schedule!$A$2:$A$210,AGGREGATE(15,6,1/((COUNTIFS('Export Report'!$G$2:$G$7529,$B4,'Export Report'!$B$2:$B$7529,Schedule!$A$2:$A$210)=0)/LEN(INDEX(Schedule!$B$2:$H$210,0,MATCH($B4,Schedule!$B$1:$H$1,0)))>0)*(ROW(Schedule!$A$2:$A$210)-ROW(Schedule!$A$1)),COLUMN()-COLUMN($B$4))),"")
Thanks in advance!
- SergeiBaklanJun 11, 2019Diamond Contributor
Great