Hi All,
Can anyone help with what basics I am missing from this code, i keep getting type mismatch for .
>>> use code - tags <<<
Many thanks in advance.
Can anyone help with what basics I am missing from this code, i keep getting type mismatch for .
>>> use code - tags <<<
Code:
cell = cell.Value * Sheets("invoicesforxero").Range("H" & current)
Sub place_line_total_for_xero_spreadsheet()
For Each cell In Sheets("invoicesforxero").Range("G1:G7")
current = cell.Row
cell = cell.Value * Sheets("invoicesforxero").Range("H" & current)
MsgBox cell
Next
End Sub
Many thanks in advance.
Last edited by a moderator: