Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to replace null values in all the cells of a column with the value in
the cell directly above it. Can I run something in the next column to accomplish this? Example: A B 1 $5 2 3 $3 4 $7 5 Desired Result: Example: A B 1 $5 $5 2 $5 3 $3 $3 4 $7 $7 5 $7 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can do it right in the same column.
Select your range Hit F5 Click "Special" Click "Blanks" Then <OK Type the Equal (=) sign Hit the UpArrow Hit <Ctrl <Enter -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Steve C" wrote in message ... I need to replace null values in all the cells of a column with the value in the cell directly above it. Can I run something in the next column to accomplish this? Example: A B 1 $5 2 3 $3 4 $7 5 Desired Result: Example: A B 1 $5 $5 2 $5 3 $3 $3 4 $7 $7 5 $7 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
you could use a helper column next to the column with the null values. assuming the values are in column A, in the helper column put this... =if(A2="",A1,A2) Regards FSt1 "Steve C" wrote: I need to replace null values in all the cells of a column with the value in the cell directly above it. Can I run something in the next column to accomplish this? Example: A B 1 $5 2 3 $3 4 $7 5 Desired Result: Example: A B 1 $5 $5 2 $5 3 $3 $3 4 $7 $7 5 $7 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For A1, read B1?
-- David Biddulph "FSt1" wrote in message ... hi you could use a helper column next to the column with the null values. assuming the values are in column A, in the helper column put this... =if(A2="",A1,A2) Regards FSt1 "Steve C" wrote: I need to replace null values in all the cells of a column with the value in the cell directly above it. Can I run something in the next column to accomplish this? Example: A B 1 $5 2 3 $3 4 $7 5 Desired Result: Example: A B 1 $5 $5 2 $5 3 $3 $3 4 $7 $7 5 $7 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
There are instructions here for filling the blank cells in a column:
http://www.contextures.com/xlDataEntry02.html Or, if you need to do it in the adjacent column, you can use a formula. For example, in cell B2: =IF(A2="",B1,A2) Steve C wrote: I need to replace null values in all the cells of a column with the value in the cell directly above it. Can I run something in the next column to accomplish this? Example: A B 1 $5 2 3 $3 4 $7 5 Desired Result: Example: A B 1 $5 $5 2 $5 3 $3 $3 4 $7 $7 5 $7 -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to replace null values with zero? | Setting up and Configuration of Excel | |||
replace null cells within a range to 0 | Excel Discussion (Misc queries) | |||
How do I find and replace null values in Excel 2002 worksheets? | Excel Worksheet Functions | |||
Replace Null value in Coloumn | Excel Discussion (Misc queries) | |||
Replace null string with blank cell | Excel Discussion (Misc queries) |