I have data that contains a lot of 0's and several values > 0 in it. I need to get these non-zero values.
I'm wondering if MATCH
can understand something like MATCH("<>0"
or match if number because I could just change the 0's to text like "blank" or something.
EDIT: This is only a part of what I'm trying to get, if it will help, I can explain what I'm trying to pull out of my data. Here's a sample of what my data looks like.
What I need is to find all non-zero values in my table and return the respective column and row headers and the actual value. Similar to this post I found, I'm currently using a variation of those formulas. As a temporary solution, I put an underscore in front of my non-zero values to use MATCH("_*"
.
Formulas I'm Using
=IF(ROWS(B$100:B100)>COUNTIF($B$2:$DMV$91,"<>0"),"",INDEX(A$2:A$91,SMALL(IF($B$2:$DMV$91<>0,ROW($B$2:$DMV$91)-ROW($B$2)+1),ROWS(B$100:B100))))
=IF(B101="","",INDEX(B$1:DMV$1,MATCH("_*",INDEX(B$2:DMV$91,MATCH(B101,A$2:A$91,0),0),0)))
Desired Output
Date | Item | # of Access
11/1/2017 | Item1 | 1
11/2/2017 | Item2 | 1
11/3/2017 | Item3 | 8
11/3/2017 | Item4 | 4
Not sure if this information is helpful but as an extra, if someone could point me in the right direction of how to display the actual value in the cell, that'd be awesome.