Forum Discussion
thortonisb
Jun 13, 2019Copper Contributor
Ignore blanks on a graph, when created by another formula: complicated
I have a table of student data over time for multiple students. I have hidden them and their performance, and allow the user to pick a student from a list to see just their performance over time in a...
- Jun 13, 2019you could try replacing the "" with NA()
So
is =IF( VLOOKUP(A2,A3:M79,COLUMN(),0)="" ,NA() ,VLOOKUP(A2,A3:M79,COLUMN(),0) )
Wyn Hopkins
Jun 13, 2019MVP
you could try replacing the "" with NA()
So
is =IF( VLOOKUP(A2,A3:M79,COLUMN(),0)="" ,NA() ,VLOOKUP(A2,A3:M79,COLUMN(),0) )
So
is =IF( VLOOKUP(A2,A3:M79,COLUMN(),0)="" ,NA() ,VLOOKUP(A2,A3:M79,COLUMN(),0) )
thortonisb
Jun 13, 2019Copper Contributor
Wyn Hopkins That is fantastic, thank you. And yet, for some reason I think I tried that, but "NA()" so the ""made all the difference. Either way, you seem to have given me the solution I wanted so thanks!