google spreadsheet - Conditional search for a DOCS spreasheet -
i'm working 2 sheets in docs, want bring name of product(column 1) 1 sheet another(also in column 1) if has value in column(column 2), "published" tried use several formulas, if keep spaces between published , non published products, script need, suggestions ?
are 2 sheets within same file? if so, formula may work:
=filter(sheet1!a:a,sheet1!b:b="published")
if columns in different files need combine both sheet1 ranges importrange formula:
=filter(importrange("key","sheet1!a:a"),importrange("key","sheet1!b:b")="published")
Comments
Post a Comment