Forum Discussion
Constants in formulas
Hi there
Adjust your formula slightly by using $ within the cell reference, in your case it would be $D$10.
This is called Absolute Cell Referencing and will ensure that the cell reference for your Pay Rate won't change.
Hope that helps.
Cheers
Damien
- Phillip J. SeamanApr 18, 2018Copper Contributor
Hi Damien,
I have the same issue and your solution did not work for me... let me elaborate a bit...
Cell L3 value = $0.29
I have a table that has rows of calculated fields that have the following formula in each =IF(D7=-10, ,D7*L3)
I have the same issue if I copy and paste this cells formula it changes the D reference but also the L reference. D SHOULD change but L should remain L3...
I tried putting a $ sign in front of the L (i.e. =IF(D7=-10, ,D7*$L3) - FAILED
So where do I put the "$"?
Thanks for your help.
- Damien_RosarioApr 18, 2018Silver Contributor
Hi Phillip
The $ locks in the column/row.
So $L locks in column L and $3 locks in row 3.
As Sergei says above, $L$3 will do the trick.
Cheers
Damien- Phillip J. SeamanApr 19, 2018Copper Contributor
Damien... I was missing the $ in front of the row... thanks works great.
Phill
- SergeiBaklanApr 18, 2018Diamond Contributor
$L$3