Using Excel powerquery:
I have the colum "index" (it's an index colum):
I want to add a new colum, a customized index. The value of its rows should the same as "index" colum + value of cell A1 from sheet 2 in same book.
Tried with
#"custom index" = Table.AddColumn(#"amount", "customindexo", each [index]+sheet2!A1)
Tried also
#"custom index" = Table.AddColumn(#"amount", "customindexo", each [index]+ Excel.Workbook(File.Contents(GetValue("sheet2!A1"))))
No sucess. These are my first steps in powerquery. After hours researching I'm not able to do this..