Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default updating two sets of data

I have this formula under that I use to update the numbers in my
worksheet and is working find
But I have two sets of data now on the same worksheet coming from
a1:a20 starting from the number (1) one to number twenty (20) and the
other number also starting from a21: a100 starting from the number one
to number ninety
What is needed is two command buttons to update the first part from
a1:a20 and the other part from a21:a100

Sub BBB()
Dim rng As Range
With ActiveSheet
Set rng = .Range(.Cells(2, 2), .Cells(2, 2).End(xlDown))
End With
Set rng = rng.Offset(0, -1)
rng(1) = 1
rng(2) = 2
rng(1).Resize(2, 1).AutoFill rng
End Sub

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default updating two sets of data

Hi Solid,

In accordance with your BBB macro, try:

'==============
Public Sub CCC()
Dim rng As Range
With ActiveSheet
Set rng = .Range(.Cells(21, 2), .Cells(21, 2).End(xlDown))
End With
Set rng = rng.Offset(0, -1)
rng(1) = 21
rng(2) = 22
rng(1).Resize(2, 1).AutoFill rng

End Sub
'<<==============

BTW, I assume that:

other number also starting from a21: a100 starting from the
number one to number ninety


is a typo and you meant to refere to a 1-80 sequence.


---
Regards,
Norman


"solid" wrote in message
ups.com...
I have this formula under that I use to update the numbers in my
worksheet and is working find
But I have two sets of data now on the same worksheet coming from
a1:a20 starting from the number (1) one to number twenty (20) and the
other number also starting from a21: a100 starting from the number one
to number ninety
What is needed is two command buttons to update the first part from
a1:a20 and the other part from a21:a100

Sub BBB()
Dim rng As Range
With ActiveSheet
Set rng = .Range(.Cells(2, 2), .Cells(2, 2).End(xlDown))
End With
Set rng = rng.Offset(0, -1)
rng(1) = 1
rng(2) = 2
rng(1).Resize(2, 1).AutoFill rng
End Sub



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default updating two sets of data

There are two sets of updating on the sheet one from a1 to a20 and
from a21 to a90 to be updated all number start from one
need to click a command to update the first one from a1to a20 and from
a21 to a90

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default updating two sets of data

Hi Solid,

Try:

'=============
Public Sub CCC()
Dim rng As Range

Set rng = ActiveSheet.Range("A1:A90")
rng(1) = 1
rng(21) = 1

rng(1).AutoFill Destination:=rng(1).Resize(20), _
Type:=xlFillSeries
rng(21).AutoFill Destination:=rng(21).Resize(70), _
Type:=xlFillSeries

End Sub

'<<=============


---
Regards,
Norman



"solid" wrote in message
oups.com...
There are two sets of updating on the sheet one from a1 to a20 and
from a21 to a90 to be updated all number start from one
need to click a command to update the first one from a1to a20 and from
a21 to a90



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default updating two sets of data

Thank you so mush, it work well thank again



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
Excel graph 3 sets of data. 2 sets as lines 1 as column? AndyN Charts and Charting in Excel 2 July 11th 08 01:18 PM
show 3 sets of data per data point in a scatter plot Marie Charts and Charting in Excel 6 May 19th 08 09:38 PM
3 Different Data Sets Otillio Charts and Charting in Excel 0 April 3rd 08 05:27 AM
how do i link up 2 sets of data into 1 set of data in excel Mike Excel Worksheet Functions 2 October 21st 06 01:52 AM
help comparing two sets od data to find the odd data matsgullis Excel Worksheet Functions 2 January 12th 06 01:52 AM


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