1.2.3 are working just fine because the operation is this:
=QUERY({'ALL Leads'!$A:$R};"SELECT Col3 WHERE Col15= 'Zohra'";"")
Now I want it to get me whatever is in column E10 ("Zohra" in this example) but apparently it's not working !
What do you think the problem is?
CodePudding user response:
use:
=QUERY({'ALL Leads'!$A:$R}; "select Col3 where Col15 = '"&E10&"'"; )
extra advice: if E10 would be numeric number formula would be:
=QUERY({'ALL Leads'!$A:$R}; "select Col3 where Col15 = "&E10; )