![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: May 2002
Location: Davidson, NC
Posts: 162
|
how can you use the drag fill (the little box on the right bottom of a selected cell) to fill down.
example: =if(a2=1,b2) I want the next cell to display =if(a3=2,b3) this is probably a very simple procedure. Please help!!!!!!! [ This Message was edited by: mcfly on 2002-05-22 10:29 ] |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: Florida
Posts: 82
|
Highlight the cell, place the mouse pointer on the fill handle (little black thing in corner) and pull down as far as needed..........
Denny |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: May 2002
Location: Davidson, NC
Posts: 162
|
that only changes the cell numbers, it doesnt change the numbers 1, 2, 3...etc.
|
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
On 2002-05-22 10:35, kinkyparamour wrote: Highlight the cell, place the mouse pointer on the fill handle (little black thing in corner) and pull down as far as needed... or give a double click on the fill handle. And, if it's not intendedly so, supply a third argument to the IF. [ This Message was edited by: Aladin Akyurek on 2002-05-22 10:49 ] |
|
|
|
|
|
#5 | |
|
Board Regular
Join Date: Feb 2002
Location: Southfield,MI USA
Posts: 1,027
|
Hey,
Quote:
=IF(A2=Row(A1),B2,0) (Yes I like to type stuff out Adam |
|
|
|
|
|
|
#6 |
|
Board Regular
Join Date: May 2002
Location: Davidson, NC
Posts: 162
|
I have changed my cells up to 10
example:=if(a2=1,b2) =if(a3=2,b3) =if(a4=3,b4) all the way to 10 and it starts back over at 1 thru 10 thanks for everyones help, but i cant figure it out, or is it possible? |
|
|
|
|
|
#7 |
|
Board Regular
Join Date: Feb 2002
Location: Southfield,MI USA
Posts: 1,027
|
Man, this problem keeps evolving!
How about something like: =IF(A2=ROW(A1)-10*(ROUNDUP(ROW(A1)/10,0)-1),B2,0) Adam |
|
|
|
|
|
#8 |
|
Board Regular
Join Date: May 2002
Location: Davidson, NC
Posts: 162
|
no dice thanks anyway!
|
|
|
|
|
|
#9 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
What is in A2 and B2? And, where are putting this formula? What is the goal? |
|
|
|
|
|
|
#10 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
=IF(A2=MOD(ROW(A1)-1,10)+1,B2)
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|