Hi!
I am trying to extract data from a specific column and row of all worksheets in a specific workbook. I want to put the value of the specific cells in a new sheet in a new book, each value has to be identified with the name of the worksheet.
So far I have tried this:
doc -e LB
{
  int j=1;
  if (%H == "Book1")
    {
    loop(ii,1,page.nlayers) 
       {
        string str = wks.name$;
        [book2](sheet1)!2[j] = [%H]$(ii)!2[2];
        [book2](sheet1)!1[j] = str;
        j++;
      }
    }
}
But when I run it, nothing happens in the new book and new sheet that I previously created.
It'e been a long time trying to solve this.