Hi freirema and welcome to the forum,
As per forum rules, please use code tags around your code.
to answer your questions, make sure you reference the sheet correctly when you use the Cells(x,y) otherwise you may refer to the incorrect sheet (activesheet will be used)
Also when defining a range, you need to specify 2 cells.
For example :
Application.Run "ATPVBAEN.XLAM!Fourier", Worksheets("Red").Range(Worksheets("Red").Cells(1, i), Worksheets("Red").Cells(128, i)), _
Worksheets("Analysis - Red").Range(Worksheets("Analysis - Red").Cells(430, 48 + i),Worksheets("Analysis - Red").Cells(430, 48 + i) ), False, False
or
Application.Run "ATPVBAEN.XLAM!Fourier", Worksheets("Red").Range(Worksheets("Red").Cells(1, i), Worksheets("Red").Cells(128, i)), _
Worksheets("Analysis - Red").Cells(430, 48 + i) , False, False
Bookmarks