Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Sub CurrencyProblem()
- Dim quantity As Integer
- quantity = Range("A2")
- Dim amount, result As Double
- amount = Range("C2")
- result = quantity * amount
- Debug.Print result
- Range("E2") = result
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement