I'll give an example. So, lets say I have this very simple macro:
Sub updateOneCell(cellNumber As String, cellLetter As String, updatedValue As String)
Range(cellLetter & cellNumber).value = updatedValue
End Sub
How do I run this macro which is saved as a .txt on multiple .xlsx without having to convert the .xlsx to .xlsm? Also without having to open up the .xlsx files.