@ BigBen - спасибо, что указали мне правильное направление :) Я нашел то, что мне было нужно.
Это было действительно тяжело, так как я никогда в своей жизни не занимался программированием, а только 5 часов онлайн-обучения VBA! Спасибо, ниже приведен скрипт для всех, кому он может понадобиться:
Range("A" & Rows.Count).End(xlUp).Offset(1).Select
ActiveCell.FormulaR1C1 = "PCxxx"
'this is inputting data into the last row with no data in the table in column A
Range("D" & Rows.Count).End(xlUp).Offset(0).Select
ActiveCell.FormulaR1C1 = "Userxxx"
'this is inputting data into the last row with no data in the table in column D
Range("F" & Rows.Count).End(xlUp).Offset(0).Select
ActiveCell.FormulaR1C1 = "ServiceCodexxx"
'this is inputting data into the last row with no data in the table in column F