3

In Google Sheets, is there a way to pivot the output of googlefinance() horizontally? Currently, it outputs prices/dates vertically.

4thSpace
  • 43,672
  • 97
  • 296
  • 475

1 Answers1

8

Use TRANSPOSE(),

=TRANSPOSE(googlefinance())

enter image description here

is that what you where up to?