Hello @ThyagoVicent
I think, you should use function available in Inventor.
Or you can use below VBA code, I'm really not good at VBA but I can only write what I know.
You can create a VBA that can run multiple .*ipt updates in .*iam.

Sub CreateParam()
Dim oWkbk As Workbook
Set oWkbk = ThisWorkbook
Dim oSheet As Worksheet
Set oSheet = oWkbk.ActiveSheet
Dim oCell As Range
oLastRow = oSheet.Cells(oSheet.Rows.Count, 1).End(XlDirection.xlUp).Row
Dim oInv As Inventor.Application
Set oInv = GetObject(, "Inventor.Application")
Dim oDoc As Document
Set oDoc = oInv.ActiveDocument
Dim partDoc As PartDocument
Set partDoc = oInv.ActiveDocument
Dim userParams As UserParameters
Set userParams = partDoc.ComponentDefinition.Parameters.UserParameters
a = "A"
i = 0
For Each oCell In Range(a & i + 3, a & oLastRow)
Dim param As Parameter
On Error Resume Next
Set param = userParams.AddByExpression(oCell, oCell.Offset(0, 1).Value, oCell.Offset(0, 2).Value)
If Err.Number <> 0 Then
On Error Resume Next
End If
Dim oUserParam As UserParameter
For Each oUserParam In userParams
Dim oLen As Variant
oLen = Len(oUserParam.name)
'If oLen <> 5 Then
'oUserParam.Delete
'End If
If oUserParam.name = oCell.Value Then
oUserParam.Comment = oCell.Offset(, 3)
End If
Next
Next oCell
MsgBox "Done!"
End Sub
Sub UpdateParam()
Dim oWkbk As Workbook
Set oWkbk = ThisWorkbook
Dim oSheet As Worksheet
Set oSheet = oWkbk.ActiveSheet
Dim oCell As Range
oLastRow = oSheet.Cells(oSheet.Rows.Count, 1).End(XlDirection.xlUp).Row
Dim oInv As Inventor.Application
Set oInv = GetObject(, "Inventor.Application")
Dim oDoc As Document
Set oDoc = oInv.ActiveDocument
Dim partDoc As PartDocument
Set partDoc = oInv.ActiveDocument
a = "A"
i = 0
For Each oCell In Range(a & i + 3, a & oLastRow)
Dim userParams As UserParameters
Set userParams = partDoc.ComponentDefinition.Parameters.UserParameters
Dim oUserParam As UserParameter
For Each oUserParam In userParams
If oUserParam.name = oCell.Value Then
oUserParam.Expression = oCell.Offset(0, 1).Value
End If
Next
Next
MsgBox "Done!"
End Sub
