1

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?

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124
Mo396
  • 39
  • 1
  • 6

1 Answers1

2

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; )
player0
  • 124,011
  • 12
  • 67
  • 124