Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Enter a number on different cells automatically ?

Hello,

I want to enter a number on different cells automatically. I want to
do this so I don't need to repeat the process again and again. I want
to enter a number on cell A3 and the same number will appear on cell
A6, A9, A12, A15 and A18 automatically. When I delete the number on
cell A3, the number will also dissapear from cell A6, A9, A12, A15 and
A18 automatically too.

Example Cell A3 2019

A6 2019

A9 2019

A12 2019

A15 2019

A18 2019


Thank You.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Enter a number on different cells automatically ?

Suppose Cell A3 = 2019

In cell A6 Enter formula
=IF(A3<"",A3,"")

Copy OR Drag the same formula down from A6: to the number of rows required.

If this post helps click Yes
---------------
Jacob Skaria


" wrote:

Hello,

I want to enter a number on different cells automatically. I want to
do this so I don't need to repeat the process again and again. I want
to enter a number on cell A3 and the same number will appear on cell
A6, A9, A12, A15 and A18 automatically. When I delete the number on
cell A3, the number will also dissapear from cell A6, A9, A12, A15 and
A18 automatically too.

Example Cell A3 2019

A6 2019

A9 2019

A12 2019

A15 2019

A18 2019


Thank You.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Enter a number on different cells automatically ?

If you have other information in A4,A5,A7 etc; copy this formula to the
required cells (A6,A9,A12,A15,A18)

=IF($A$3="","",$A$3)

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Suppose Cell A3 = 2019

In cell A6 Enter formula
=IF(A3<"",A3,"")

Copy OR Drag the same formula down from A6: to the number of rows required.

If this post helps click Yes
---------------
Jacob Skaria


" wrote:

Hello,

I want to enter a number on different cells automatically. I want to
do this so I don't need to repeat the process again and again. I want
to enter a number on cell A3 and the same number will appear on cell
A6, A9, A12, A15 and A18 automatically. When I delete the number on
cell A3, the number will also dissapear from cell A6, A9, A12, A15 and
A18 automatically too.

Example Cell A3 2019

A6 2019

A9 2019

A12 2019

A15 2019

A18 2019


Thank You.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Enter a number on different cells automatically ?


If you find that you cannot use formula for some reason then here's a
VBA code version, it goes in the worksheet code module

*How to Save a Worksheet Event Macro*
1. *Copy* the macro using *CTRL+C* keys.
2. Open your Workbook and *Right Click* on the *Worksheet's Name Tab*
for the Worksheet the macro will run on.
3. *Left Click* on *View Code* in the pop up menu.
4. *Paste* the macro code using *CTRL+V*
5. Make any custom changes to the macro if needed at this time.
6. *Save* the macro in your Workbook using *CTRL+S*


Private Sub Worksheet_SelectionChange(ByVal Target As
Range)
Select Case Range("A3").Value
Case Is < ""
Range("A6").Value = Range("A3").Value
Range("A9").Value = Range("A3").Value
Range("A12").Value = Range("A3").Value
Range("A15").Value = Range("A3").Value
Range("A18").Value = Range("A3").Value
Case Is = ""
Range("A6").Value = ""
Range("A9").Value = ""
Range("A12").Value = ""
Range("A15").Value = ""
Range("A18").Value = ""
End Select
End Sub


;305624 Wrote:
Hello,

I want to enter a number on different cells automatically. I want to
do this so I don't need to repeat the process again and again. I want
to enter a number on cell A3 and the same number will appear on cell
A6, A9, A12, A15 and A18 automatically. When I delete the number on
cell A3, the number will also dissapear from cell A6, A9, A12, A15 and
A18 automatically too.

Example Cell A3 2019

A6 2019

A9 2019

A12 2019

A15 2019

A18 2019

Thank You.



--
Simon Lloyd

Regards,
Simon Lloyd
'The Code Cage' (
http://www.thecodecage.com)
------------------------------------------------------------------------
Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=85458

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Enter a number on different cells automatically ?

Problem solved . Thank You so much .
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
want to automatically skip certain cells when you hit enter Deedarling1960 Excel Worksheet Functions 2 July 11th 08 11:53 PM
Enter various number of blank lines in cells Jim New Users to Excel 2 March 3rd 08 02:15 AM
HOW DO i SET UP EXCEL TO AUTOMATICALLY ENTER DATE INTO CELLS danielle Excel Worksheet Functions 4 May 31st 07 09:03 PM
set tab or enter keys to automatically move to different cells J9Y Excel Discussion (Misc queries) 8 November 8th 06 02:29 AM
How do I quickly enter the same number into different cells? Cheers100 New Users to Excel 2 February 18th 06 02:26 PM


All times are GMT +1. The time now is 06:21 PM.

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"