I tried this formula:
=concatenate(query('Scheda Intervento'!C2:K14;"select SUM (K) where (F>= date '2013-01-01' and F <= date '2013-01-31' and C = '" & A2 &"')";0))
The result is right but it gives me:
sum
35 €
but I want to have
35 €
I tried this formula:
The result is right but it gives me:
but I want to have
|
||||
Use the following formula:
After that you can perform the |
|||
|
INDEX
to capture only the second row/result:INDEX(Your formula),2,1)
– Jacob Jan Tuinstra Apr 22 at 12:59INDEX(query('Scheda Intervento'!C2:K14;"select SUM (K) where (F>= date '2013-01-01' and F <= date '2013-01-31' and C = '" & A2 &"')"),2,1)
– Jacob Jan Tuinstra Apr 22 at 13:27