#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Check box filter

I am comparing data in two adjacent columns, one is the 'expected' values and
one is the 'actual' values. I need to use these to create a final column that
contains the 'approved' values. This will involve manual comparing the
actuals against the expected and selecting/approving which one is to be
approved. I thought to do this using checkboxes in the next column. For each
row if a checkbox is ticked the actuals are approved/unticked the expected
are approved. I thought I could write a macro executed with a command button
once all selections have been made/approvals have been completed.

The macro will check each populated row to see whether the check box is
checked/unchecked and based on this, copy the related value
('actual'/'expected')from one of the adjacent column values to the next
available row in the 'approved' column.

However whilst I have them theory my practical skills are limited and the
only way I have managed to do this is to write a macro for each checkbox/row
specifying cells etc.
If anyone can help of a more automated process, or has a better way of
achieving this, please help!!

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Check box filter

Rethinking idea:
3rd column, instead of using check boxes, just have user place and "X" or
some other mark. Then somewhere else, have a cell (Say C1) labeled "Check
here when finished)
Then your approved column can simply be
=IF($C$1<"X","",IF(C2="X",A2,B2))

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"pynestar" wrote:

I am comparing data in two adjacent columns, one is the 'expected' values and
one is the 'actual' values. I need to use these to create a final column that
contains the 'approved' values. This will involve manual comparing the
actuals against the expected and selecting/approving which one is to be
approved. I thought to do this using checkboxes in the next column. For each
row if a checkbox is ticked the actuals are approved/unticked the expected
are approved. I thought I could write a macro executed with a command button
once all selections have been made/approvals have been completed.

The macro will check each populated row to see whether the check box is
checked/unchecked and based on this, copy the related value
('actual'/'expected')from one of the adjacent column values to the next
available row in the 'approved' column.

However whilst I have them theory my practical skills are limited and the
only way I have managed to do this is to write a macro for each checkbox/row
specifying cells etc.
If anyone can help of a more automated process, or has a better way of
achieving this, please help!!

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Check box filter

Thanks. You are right in that this does what I need, but I am not making the
spreadsheet for my own use and have been asked for something as user friendly
as possible, so if I can figure it out, I would prefer to use checkboxes. I
figure a click of the mouse is slightly more user friendly than entering
characters.
If anyone can help with this it would be greatly appreciated.

"Luke M" wrote:

Rethinking idea:
3rd column, instead of using check boxes, just have user place and "X" or
some other mark. Then somewhere else, have a cell (Say C1) labeled "Check
here when finished)
Then your approved column can simply be
=IF($C$1<"X","",IF(C2="X",A2,B2))

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"pynestar" wrote:

I am comparing data in two adjacent columns, one is the 'expected' values and
one is the 'actual' values. I need to use these to create a final column that
contains the 'approved' values. This will involve manual comparing the
actuals against the expected and selecting/approving which one is to be
approved. I thought to do this using checkboxes in the next column. For each
row if a checkbox is ticked the actuals are approved/unticked the expected
are approved. I thought I could write a macro executed with a command button
once all selections have been made/approvals have been completed.

The macro will check each populated row to see whether the check box is
checked/unchecked and based on this, copy the related value
('actual'/'expected')from one of the adjacent column values to the next
available row in the 'approved' column.

However whilst I have them theory my practical skills are limited and the
only way I have managed to do this is to write a macro for each checkbox/row
specifying cells etc.
If anyone can help of a more automated process, or has a better way of
achieving this, please help!!

Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Check box filter

In addition I would like to ensure that the user enters comments/reasons
where actuals are rejected in favour of budjeted/expected values. I figure
that with the checkbox theory above I could incorporate a facility so that
where a checkbox is not selected the user could be prompted for input via a
user form. Is this possible?

"pynestar" wrote:

Thanks. You are right in that this does what I need, but I am not making the
spreadsheet for my own use and have been asked for something as user friendly
as possible, so if I can figure it out, I would prefer to use checkboxes. I
figure a click of the mouse is slightly more user friendly than entering
characters.
If anyone can help with this it would be greatly appreciated.

"Luke M" wrote:

Rethinking idea:
3rd column, instead of using check boxes, just have user place and "X" or
some other mark. Then somewhere else, have a cell (Say C1) labeled "Check
here when finished)
Then your approved column can simply be
=IF($C$1<"X","",IF(C2="X",A2,B2))

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"pynestar" wrote:

I am comparing data in two adjacent columns, one is the 'expected' values and
one is the 'actual' values. I need to use these to create a final column that
contains the 'approved' values. This will involve manual comparing the
actuals against the expected and selecting/approving which one is to be
approved. I thought to do this using checkboxes in the next column. For each
row if a checkbox is ticked the actuals are approved/unticked the expected
are approved. I thought I could write a macro executed with a command button
once all selections have been made/approvals have been completed.

The macro will check each populated row to see whether the check box is
checked/unchecked and based on this, copy the related value
('actual'/'expected')from one of the adjacent column values to the next
available row in the 'approved' column.

However whilst I have them theory my practical skills are limited and the
only way I have managed to do this is to write a macro for each checkbox/row
specifying cells etc.
If anyone can help of a more automated process, or has a better way of
achieving this, please help!!

Thanks!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i filter check boxes? Bobble Excel Discussion (Misc queries) 3 September 13th 07 09:42 AM
Increase size of a Forms Check Box (click on to enter check mark) 718Satoshi Excel Discussion (Misc queries) 0 August 17th 07 01:52 AM
Check if Conditional Format is True or False / Check cell Color Kevin McCartney Excel Worksheet Functions 5 June 29th 07 11:12 AM
How to change the color of the filter check box Elena Excel Discussion (Misc queries) 2 August 28th 06 06:27 PM
Enable check box in protected sheet + group check boxes Dexxterr Excel Discussion (Misc queries) 4 August 2nd 06 12:00 PM


All times are GMT +1. The time now is 01:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"