Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Data in cell changes then another cell data to change

Need help to write formula or suggest a way of doing.

When Cell F3 is not equal to "CURRENT"
then where (G3:G10) contains X
change X to A.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Data in cell changes then another cell data to change


Jennifer1960 Wrote:
Need help to write formula or suggest a way of doing.

When Cell F3 is not equal to "CURRENT"
then where (G3:G10) contains X
change X to A.if there are only 7 rows, maybe this could work,enter this formula in

each of the cells G3:G10
=if($F$3="CURRENT","A","X")

or maybe you need this in each cell

=IF(F3="CURRENT","A","X")
=IF(F4="CURRENT","A","X")
=IF(F5="CURRENT","A","X")
=IF(F6="CURRENT","A","X")
=IF(F7="CURRENT","A","X")
=IF(F8="CURRENT","A","X")
=IF(F9="CURRENT","A","X")
=IF(F10="CURRENT","A","X")


--
davesexcel


------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=574452

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Data in cell changes then another cell data to change

Dave thansk but it did not work

I need G3:G10 that contains X to change to A when F3 does NOT = "Current".

Jennifer

"davesexcel" wrote:


Jennifer1960 Wrote:
Need help to write formula or suggest a way of doing.

When Cell F3 is not equal to "CURRENT"
then where (G3:G10) contains X
change X to A.if there are only 7 rows, maybe this could work,enter this formula in

each of the cells G3:G10
=if($F$3="CURRENT","A","X")

or maybe you need this in each cell

=IF(F3="CURRENT","A","X")
=IF(F4="CURRENT","A","X")
=IF(F5="CURRENT","A","X")
=IF(F6="CURRENT","A","X")
=IF(F7="CURRENT","A","X")
=IF(F8="CURRENT","A","X")
=IF(F9="CURRENT","A","X")
=IF(F10="CURRENT","A","X")


--
davesexcel


------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=574452


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 179
Default Data in cell changes then another cell data to change

use this macri in your particular sheet module:
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
Dim i As Integer
If Target.Address = "$F$3" And UCase(Target.Value) < "CURRENT" Then
For i = 3 To 10
If UCase(Range("G" & i).Value) = "X" Then Range("G" & i).Value =
"A"
Next i
End If
End Sub


"Jennifer1960" wrote:

Dave thansk but it did not work

I need G3:G10 that contains X to change to A when F3 does NOT = "Current".

Jennifer

"davesexcel" wrote:


Jennifer1960 Wrote:
Need help to write formula or suggest a way of doing.

When Cell F3 is not equal to "CURRENT"
then where (G3:G10) contains X
change X to A.if there are only 7 rows, maybe this could work,enter this formula in

each of the cells G3:G10
=if($F$3="CURRENT","A","X")

or maybe you need this in each cell

=IF(F3="CURRENT","A","X")
=IF(F4="CURRENT","A","X")
=IF(F5="CURRENT","A","X")
=IF(F6="CURRENT","A","X")
=IF(F7="CURRENT","A","X")
=IF(F8="CURRENT","A","X")
=IF(F9="CURRENT","A","X")
=IF(F10="CURRENT","A","X")


--
davesexcel


------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=574452


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
Urgent date/scheduling calc needed jct Excel Worksheet Functions 3 February 24th 06 01:36 AM
Excel Macro to Copy & Paste [email protected] Excel Worksheet Functions 0 December 1st 05 01:56 PM
Cell Change Color - Need Help alani New Users to Excel 3 June 29th 05 03:50 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
How do I change a cell so I can have the data it contains in seve. swede Excel Discussion (Misc queries) 1 February 21st 05 06:22 PM


All times are GMT +1. The time now is 12:00 AM.

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

About Us

"It's about Microsoft Excel"