Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How to fill cell with data from a previous cell

How to fill cell with data from a previous cell till meet next cell with data in a same column in Excel

EggHeadCafe - Software Developer Portal of Choice
Scriptless ASP Progress Indicator
http://www.eggheadcafe.com/tutorials...rogress-i.aspx
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 747
Default How to fill cell with data from a previous cell

Sub test()
Dim rng As Integer, i As Integer

rng = Cells(Rows.Count, "F").End(xlUp).Row
For i = 2 To rng
Cells(i, "F").Select
ActV = ActiveCell.Offset(-1, 0).Value
If ActiveCell.Value = "" Then
ActiveCell.Value = ActV
End If
Next i
End Sub


On Oct 19, 2:12*pm, Ishi Elpitiya wrote:
How to fill cell with data from a previous cell till meet next cell with data in a same column in Excel

EggHeadCafe - Software Developer Portal of Choice
Scriptless ASP Progress Indicatorhttp://www.eggheadcafe.com/tutorials/aspnet/5e32d930-dc4a-476c-8e15-f...


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How to fill cell with data from a previous cell

Select the column then F5SpecialBlanksOK

Type an = sign in active blank cell.

Point or arrow to cell above.

Hit CTRL + ENTER.

Copy the column then Paste SpecialValuesOKEsc.


Gord Dibben MS Excel MVP

On Mon, 19 Oct 2009 02:12:07 -0700, Ishi Elpitiya wrote:

How to fill cell with data from a previous cell till meet next cell with data in a same column in Excel

EggHeadCafe - Software Developer Portal of Choice
Scriptless ASP Progress Indicator
http://www.eggheadcafe.com/tutorials...rogress-i.aspx


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
Selecting a cell for fill-in by previous cells Carrie Excel Discussion (Misc queries) 2 July 8th 08 04:44 PM
Macro Request: Fill in empty cells with previous Filled cell in column Artis Excel Worksheet Functions 2 June 25th 07 08:30 PM
set up a formula to automatically fill down from previous cell audif New Users to Excel 4 January 15th 07 07:26 PM
Find first previous cell with data Nancy Newburger New Users to Excel 3 August 10th 06 09:10 PM
How would I fill blank cells with the data from a previous cell? Clive Darling Excel Discussion (Misc queries) 3 January 6th 05 01:10 AM


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