PC Review


Reply
Thread Tools Rate Thread

"cell selector" control?

 
 
Chrisso
Guest
Posts: n/a
 
      4th Aug 2007
Hi All

I have a system which tracks training courses and jobs for staff.

All the training courses are laid out in columns on one worksheet. The
jobs are columns on another sheet and the rows on both sheets are the
staff.

When a user adds a new job I need to know which course provides the
training to do that job. Therefore I need a nice way to ask the user
which column on the course sheet is for the right course as I link the
course with the job on the job sheet.

I could use a data validation with a list referring to a dynamic range
name based on the course headers but this is proving difficult due to
the formatting of the course headers which I cannot change.

Is it possible to use a control or something to get the functionality
of a "cell selector" like Excel provides when your are selecting a
cell or range in, say, Conditional Formatting?

Then I could read the cell that the user selects and deduce the
correct training course column.

Is such a control available?

Chrisso

 
Reply With Quote
 
 
 
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      4th Aug 2007
I am thinking a UserForm with option buttons, checkboxes or radio dials
(whatever) for the user to click with a pre-defined course attached via the
Click event to the category descriptions on the UserForm. If that sentence
is too long then'
1. Enumerate the categories of training on a UserForm
2. When the user enters a new job, the UserForm pops up
3. The user selects the appropriate category for the job by clicking
4. The click event code then captures the job entry and adds it to the
appropriate column.

"Chrisso" wrote:

> Hi All
>
> I have a system which tracks training courses and jobs for staff.
>
> All the training courses are laid out in columns on one worksheet. The
> jobs are columns on another sheet and the rows on both sheets are the
> staff.
>
> When a user adds a new job I need to know which course provides the
> training to do that job. Therefore I need a nice way to ask the user
> which column on the course sheet is for the right course as I link the
> course with the job on the job sheet.
>
> I could use a data validation with a list referring to a dynamic range
> name based on the course headers but this is proving difficult due to
> the formatting of the course headers which I cannot change.
>
> Is it possible to use a control or something to get the functionality
> of a "cell selector" like Excel provides when your are selecting a
> cell or range in, say, Conditional Formatting?
>
> Then I could read the cell that the user selects and deduce the
> correct training course column.
>
> Is such a control available?
>
> Chrisso
>
>

 
Reply With Quote
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      4th Aug 2007
Dim r as Range
on Error Resume Next
set r = Application.InputBox("Select Course with mouse:",type:=8)
On error goto 0
if r is nothing then
msgbox "No course selected"
exit sub
End if

--
Regards,
Tom Ogilvy


"Chrisso" wrote:

> Hi All
>
> I have a system which tracks training courses and jobs for staff.
>
> All the training courses are laid out in columns on one worksheet. The
> jobs are columns on another sheet and the rows on both sheets are the
> staff.
>
> When a user adds a new job I need to know which course provides the
> training to do that job. Therefore I need a nice way to ask the user
> which column on the course sheet is for the right course as I link the
> course with the job on the job sheet.
>
> I could use a data validation with a list referring to a dynamic range
> name based on the course headers but this is proving difficult due to
> the formatting of the course headers which I cannot change.
>
> Is it possible to use a control or something to get the functionality
> of a "cell selector" like Excel provides when your are selecting a
> cell or range in, say, Conditional Formatting?
>
> Then I could read the cell that the user selects and deduce the
> correct training course column.
>
> Is such a control available?
>
> Chrisso
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RE: creating a "date selector box" or "pull down box" in a cell Gary''s Student Microsoft Excel Worksheet Functions 0 30th Sep 2009 01:45 AM
Re: creating a "date selector box" or "pull down box" in a cell Pete_UK Microsoft Excel Worksheet Functions 0 30th Sep 2009 01:39 AM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Microsoft Excel Misc 2 8th Aug 2008 01:54 AM
Differences of Acronis "OS Selector","Partition Expert" and "Disk Director" ?? Frank Callone Windows XP General 3 5th Mar 2006 03:59 PM
Differences of Acronis "OS Selector","Partition Expert" and "Disk Director" ?? Frank Callone Windows XP Help 0 5th Mar 2006 12:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:56 AM.