简体   繁体   中英

How do you add an Arrayformula in column header in google sheet and adding predefined text to populate in google sheet?

This is my formula =ARRAYFORMULA(CONCAT("https://www.google.com/search?q=",J2:J)) Problem is I do not want this one below to appear in row 1 of J1 https://www.google.com/search?q= I want this --> https://www.google.com/search?q= <---- to start in J2 I do not know how to do it. Please help or advise. Thank you in advance.

Try

=ARRAYFORMULA({"Some_title"; CONCAT("https://www.google.com/search?q=",J2:J)})

or if you want J1 to be empty

=ARRAYFORMULA({""; CONCAT("https://www.google.com/search?q=",J2:J)})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM