google spreadsheet - Get data from other sheet cell if condition -
i have 2 sheets. in first 1 have numeric data, , in second table check.
if in second table have empty cell nothing, if have cross (x) want data other sheet cell.
i've tested this:
=if(len(b3) ;="sheet 1"!b14 ; 0)
i check if b3 not empty, , want b14 value sheet 1.
but i'm getting parse error.
thanks
ok created 2 sheets: sheet1 & sheet2. in cell a8 in sheet1 there value, any, example "x". in cell b8 of sheet2 there's text value, can any, example "hello!". should this:
then if want display value in cell b8 of sheet2 in cell b8 of sheet1, need write function in cell b8 of sheet1:
write value of b8(sheet2) in case there's in a8 (sheet1). else, write 0:
=if (len(a8) > 0; sheet2!b8; 0)
or in case there's no cross ('x') write empty string:
=if (len(a8) > 0; sheet2!b8; "")
so if there's value a8 (sheet1), "hello!" displayed in b8 (sheet1) directly taken b8 of sheet2. if there's no value, 0 displayed (or en empty string, depending solution took).
Comments
Post a Comment