Forum Discussion
Inesmateus
Jul 19, 2021Copper Contributor
Lookup for values in a column different than zero/empty
Dear all, There is a way to lookup for values in a specific column but ignore empty cells or cells with zero? For instance, I have a flow table, by product in which each line represent a differ...
- Jul 19, 2021
As variant
with
=INDEX(Table1[Price (% Quoted)], MATCH(1, INDEX( (Table1[ID]=E3)*(Table1[Price (% Quoted)]<>0)*(Table1[Price (% Quoted)]<>""),0),0))
SergeiBaklan
Jul 19, 2021Diamond Contributor
As variant
with
=INDEX(Table1[Price (% Quoted)], MATCH(1, INDEX( (Table1[ID]=E3)*(Table1[Price (% Quoted)]<>0)*(Table1[Price (% Quoted)]<>""),0),0))- InesmateusJul 19, 2021Copper ContributorWorks perfectly. Thank you.
- SergeiBaklanJul 19, 2021Diamond Contributor
Inesmateus , you are welcome