1

We are currently trying to set up the following formula:

=QUERY(IMPORTRANGE("1uyazplHdGpZeBZWOv3TbnIUfWeHQGyZF5mRsNuWxkO4","Data Salesforce!A:Z"),"Select A Where J = 'Spain'",-1)

The idea is to look for a QUERY with data coming from an IMPORTRANGE.

We get the following error:

Unable to parse query string for Function QUERY parameter 2: NO_COLUMNA

Any idea how we could resolve it?

1 Answer 1

1

Instead of identifying the columns by Alphabetical index you need to reference them by numerical index.

I assume this is because importrange() doesn't really import the range but just the values.
Try

=QUERY(IMPORTRANGE("1uyazplHdGpZeBZWOv3TbnIUfWeHQGyZF5mRsNuWxkO4","Data Salesforce!A:Z"),"Select Col1 Where Col8 = 'Spain'",-1)
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.