Event VBA cell multiplication

Redland

New Member
Joined
Sep 8, 2015
Messages
2
Hi Guys,
I'm a new member, so apologies for any incorrect formatting!

It's fairly easy (but I've never had to use Excel in this capacity!) I have a list of destinations set against each other with the distances of such in the corresponding cell, I'm trying to create an event to find out the cost of the journey by multiplying it by a set cost (in a separate cell).

I'm trying to use an active X button so that, once the distance has been selected, you click the button and a MsgBox will appear with the cost (as a result of the distance being multiplied by the cost).

The table ranges from B6:AE35 with the cost located in cell AE:37

Can anyone help me with the VBA for this? As I said, I'm just having difficulty as a newbie!!

Thank you for your help,

Jim
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Code:
Private Sub CommandButton1_Click()
MsgBox ActiveCell * Cells(37, 31), vbOKOnly, "Costs"
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,975
Members
449,200
Latest member
Jamil ahmed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top