Clicking on a cell to generate an action?

chuckles1066

Banned
Joined
Dec 20, 2004
Messages
372
Is it possible?

My scenario: I produce a weekly report broken down by day and by sales rep.

Sales reps in column A, days going across from column B.

Each day will show a % of leads converted.....so for example row 2 might contain Joe Bloggs followed by 58%, 43%, 67%, 9%, 22%.

The data that drives this is stored in a worksheet called "data".

Is it possible to click on, say, 9% in the above example and something fires up to show that day's activity for Joe Bloggs from the "data" worksheet?

I've told the powers-that-be the answer is almost certainly no but you guys have amazed me before and so hopefully can do so again.

TIA.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Sure, check out the BeforeDoubleClick event:

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

You could probably trigger the Data sheet to AutoFilter from there to display just that information.

HTH,
 
Upvote 0

Forum statistics

Threads
1,224,584
Messages
6,179,693
Members
452,938
Latest member
babeneker

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