![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
I need to drag a formula down a column, but keep one value constant (when I
drag the formula down, the values in the formula change according to the row, but I need to keep one constant so each cell's formula refers to one specific cell.) Ex. - =IF(L30>40000,L1*.60,=IF(L30<20000,L1*.5,=IF(L30<4 0000,L1*.55,0))) I need to keep the L30 values the same, while the L1 changes for each row, but when I drag this formula down the column, the L30 changes. Thanks! |
| Ads |
|
#2
|
|||
|
|||
|
Change your L30 to a absolute reference $L$30
-- If this helps, please remember to click yes. "column formula with a constant value" wrote: > I need to drag a formula down a column, but keep one value constant (when I > drag the formula down, the values in the formula change according to the row, > but I need to keep one constant so each cell's formula refers to one specific > cell.) > > Ex. - =IF(L30>40000,L1*.60,=IF(L30<20000,L1*.5,=IF(L30<4 0000,L1*.55,0))) > > I need to keep the L30 values the same, while the L1 changes for each row, > but when I drag this formula down the column, the L30 changes. > > Thanks! |
|
#3
|
|||
|
|||
|
Perfect...Thank you Paul!
"Paul C" wrote: > Change your L30 to a absolute reference $L$30 > -- > If this helps, please remember to click yes. > > > "column formula with a constant value" wrote: > > > I need to drag a formula down a column, but keep one value constant (when I > > drag the formula down, the values in the formula change according to the row, > > but I need to keep one constant so each cell's formula refers to one specific > > cell.) > > > > Ex. - =IF(L30>40000,L1*.60,=IF(L30<20000,L1*.5,=IF(L30<4 0000,L1*.55,0))) > > > > I need to keep the L30 values the same, while the L1 changes for each row, > > but when I drag this formula down the column, the L30 changes. > > > > Thanks! |
|
#4
|
|||
|
|||
|
Firstly, your formula wouldn't work anyway, because you've got 2 spare
equals signs in there. It's always best if you copy and paste your actual formula in here, rather than typing something different. Secondly, what you need to look at is the difference between relative and absolute addressing. Excel help will explain it. Try =IF(L$30>40000,L1*0.6,IF(L$30<20000,L1*0.5,IF(L$30 <40000,L1*0.55,0))) -- David Biddulph column formula with a constant value wrote: > I need to drag a formula down a column, but keep one value constant > (when I drag the formula down, the values in the formula change > according to the row, but I need to keep one constant so each cell's > formula refers to one specific cell.) > > Ex. - > =IF(L30>40000,L1*.60,=IF(L30<20000,L1*.5,=IF(L30<4 0000,L1*.55,0))) > > I need to keep the L30 values the same, while the L1 changes for each > row, but when I drag this formula down the column, the L30 changes. > > Thanks! |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| keeping same-row(or column) cell constant in a formula while drag- | Mehrdad | Excel Worksheet Functions | 2 | July 12th 09 09:41 PM |
| Keeping Formula variable constant when adding new column | Marissa | Excel Discussion (Misc queries) | 2 | March 5th 09 09:04 PM |
| How do I drag a formula keeping cells the same but changing sheets | Claire | Excel Worksheet Functions | 2 | October 30th 07 12:16 PM |
| Keeping the column constant in a formula | Arithmetic functions with embedded text[_2_] | Excel Discussion (Misc queries) | 4 | June 11th 07 03:31 PM |
| Right Filling A Formula Whilst Keeping A Static Column | kevtherev | Excel Discussion (Misc queries) | 4 | September 29th 05 10:18 PM |