0

Hi I am referring this blog for fetching data from google spreadsheets ,i am able to get data from first sheet using the code mentioned in the article ,but how to fetch data from 2nd Sheet in Same SpreadSheet.

I have not included any code because i am using the same code which is there in the blog.

Rand Random
  • 7,300
  • 10
  • 40
  • 88

1 Answers1

0

Just Pass the Range as Follows in the Main Method

Original Code

var range = "A:B"; 

change it to

 var range = "SecondSheetName!A:B";