Hi all,
apologies for the poor title, not sure how be to word this one.
I'm trying to copy four rows of formula down around another 600 rows which I will then delete if they are not required...
the four rows and cell ranges are setup as follows:
A16 merged through i16
A17
b17 merged through G17
H17 merged with i17
Then
A18 merged through I18
a19
B19 merged through G19
H19 merged with I19
As you’ve probably guessed I’m trying to format data into adistributable format.
However when I try and drag a copy range A17 through I19 thenext set of formulas, beginning in A5 should read
reference to A5, but are actually referencingcells A7
Essentially I end up with two consecutive them two missing,so 1 2 5 6 9 10 13 14
Any way I can correct this?
TIA
apologies for the poor title, not sure how be to word this one.
I'm trying to copy four rows of formula down around another 600 rows which I will then delete if they are not required...
the four rows and cell ranges are setup as follows:
A16 merged through i16
Code:
=IF(ISBLANK(QuoteDetails!A3)," ",QuoteDetails!A3)
A17
Code:
=IF(LEN(B17)<5,"",1)
b17 merged through G17
Code:
=(IF(ISBLANK(QuoteDetails!C3),"","Quantity: "&QuoteDetails!B3&" off"))&(IF(ISBLANK(QuoteDetails!B3),""," | Item: "&QuoteDetails!C3))&(IF(ISBLANK(QuoteDetails!D3),""," | Drg No: "&QuoteDetails!D3))&(IF(ISBLANK(QuoteDetails!E3),""," | Patt No: "&QuoteDetails!E3))&(IF(ISBLANK(QuoteDetails!F3),""," | Scope: "&QuoteDetails!F3))&(IF(ISBLANK(QuoteDetails!G3),""," | Specification: "&QuoteDetails!G3))
H17 merged with i17
Code:
=(IF(ISBLANK(QuoteDetails!C3),"","Per Unit: £"&(IF(ISBLANK(QuoteDetails!I3),QuoteDetails!H3,(QuoteDetails!H3/100)*(100-QuoteDetails!I3)))))
Then
A18 merged through I18
Code:
=IF(ISBLANK(QuoteDetails!A4)," ",QuoteDetails!A4)
a19
Code:
=IF(LEN(B19)<5,"",A17+1)
B19 merged through G19
Code:
=(IF(ISBLANK(QuoteDetails!C4),"","Quantity: "&QuoteDetails!B4&" off"))&(IF(ISBLANK(QuoteDetails!B4),""," | Item: "&QuoteDetails!C4))&(IF(ISBLANK(QuoteDetails!D4),""," | Drg No: "&QuoteDetails!D4))&(IF(ISBLANK(QuoteDetails!E4),""," | Patt No: "&QuoteDetails!E4))&(IF(ISBLANK(QuoteDetails!F4),""," | Scope: "&QuoteDetails!F4))&(IF(ISBLANK(QuoteDetails!G4),""," | Specification: "&QuoteDetails!G4))
H19 merged with I19
Code:
=(IF(ISBLANK(QuoteDetails!C4),"","Per Unit: £"&(IF(ISBLANK(QuoteDetails!I4),QuoteDetails!H4,(QuoteDetails!H4/100)*(100-QuoteDetails!I4)))))
As you’ve probably guessed I’m trying to format data into adistributable format.
However when I try and drag a copy range A17 through I19 thenext set of formulas, beginning in A5 should read
Code:
=IF(ISBLANK(QuoteDetails!A5),"",QuoteDetails!A5)
Essentially I end up with two consecutive them two missing,so 1 2 5 6 9 10 13 14
Any way I can correct this?
TIA
Last edited: