#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 108
Default Conditional Formula

Hi,

I need to have an option (like a square selection box) on Column B, when the
square box is ticked, then the value adjacent needs to be multiplied by 5%,
if not selected then copy the same value.

A B C
1 100 (selected) 105
2 100 (not selected) 100
3
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Conditional Formula

Using an actual 'check box' from the forms toolbar, you'll need to link the
checkbox to a cell somewhere (probably hidden, lets say Z1)
formula would be
=A1+0.05*Z1*A1
Note that each check box would need to be linked to a seperate cell.

If you're content to simply put an "X" in the cell, then you can use
=IF(B1="X",A1*1.05,A1)
--
Best Regards,

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


"juanpablo" wrote:

Hi,

I need to have an option (like a square selection box) on Column B, when the
square box is ticked, then the value adjacent needs to be multiplied by 5%,
if not selected then copy the same value.

A B C
1 100 (selected) 105
2 100 (not selected) 100
3

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Conditional Formula

Assuming you put an x or X in column B to indicate that it is
selected, then put this in C1:

=IF(B1="x", A1*1.05,A1)

and copy this down as required.

Hope this helps.

Pete

On Feb 18, 6:35*pm, juanpablo
wrote:
Hi,

I need to have an option (like a square selection box) on Column B, when the
square box is ticked, then the value adjacent needs to be multiplied by 5%,
if not selected then copy the same value.

* * * * A * * * * * * * * B * * * * * * * C
1 * * 100 * * * *(selected) * * * *105
2 * * 100 * * *(not selected) * * 100
3


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
Conditional Formula Liz J[_2_] Excel Discussion (Misc queries) 3 November 25th 08 04:56 PM
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible blue[_2_] Excel Discussion (Misc queries) 2 July 11th 07 06:08 PM
Formula, Conditional Formula Needed Karl Excel Discussion (Misc queries) 12 June 23rd 07 04:12 AM
Conditional Formula to indicate Formula in cell SteveW New Users to Excel 9 August 2nd 06 01:12 AM
Conditional Formula Brendan J Cuffe Excel Worksheet Functions 3 May 11th 05 01:10 PM


All times are GMT +1. The time now is 03:24 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"