This is a job for my university, and I am trying to automate the process using Macro-VBA, which I am quite interested in learning for professional objectives
Actually, it was not possible to try too many things because I am a beginner using Excel-VBA; so my skills are quite narrow.
Sub kt()
'
' kt Macro
'
'
ActiveCell.FormulaR1C1 = _
"=Série_B!R[16]C[-1]*'Hélices_0 - Teste'!R4C7^Série_B!R[16]C*'Hélices_0 - Teste'!R4C6^Série_B!R[16]C[1]*'Hélices_0 - Teste'!R4C5^Série_B!R[16]C[2]*'Hélices_0 - Teste'!R4C2^Série_B!R[16]C[3]"
ActiveCell.Offset(0, 1).Select
End Sub
The results cell is heading in the row direction. Meanwhile, I was expecting the parameters referred to "Série_B!" spreadsheet ranging in the column direction, but actually they are changing of columns instead of changing of rows. How can I solve this out?
OBS: The parameters referred to the spreadsheet 'Hélices_0 - Teste' are fixed (F4).