C West
C West

Reputation: 133

Trying to select column BY in query, however query doesn't read it as a column

It seems Google Sheets has issues reading column BY. BX and BZ work. BY has the same type of information.

My theory is that "SELECT BY" is some sort of query argument.

=QUERY(VBOM!R5:GJ2811,"SELECT BY",1)

Is there a way around this?

Upvotes: 1

Views: 90

Answers (1)

player0
player0

Reputation: 1

use ` like:

=QUERY(VBOM!R5:GJ2811, "select `BY`", 1)


=QUERY(data!B2:CL, "select B, C, D, E, F, G, H, I, J, `BY`, BZ, CA, BA 
                    where J = 'Industry Certification'", 0)

3

Upvotes: 2

Related Questions