DeanRobinson
New Member
- Joined
- Sep 1, 2011
- Messages
- 35
Hi all, was wondering if anyone could help, what id like to happen is id have a button on a sheet then once click it will loop down a column and if the cell is blank it would insert a formula, this would be done on four columns, then once its got the values paste special column CK back to values only.
these are the columns and the formulas needed
in Column CK
in Column CO
in Column CP
in Column CQ
Any help would be greatly appricaited.
these are the columns and the formulas needed
in Column CK
Code:
=IF(ISBLANK(R2),"",VLOOKUP(R2,'Daily Repulls'!$R$2:$V$10000,5,0))
in Column CO
Code:
=IF(CJ2="CANX","CANX",IF(CJ2="DROP CABLE","ND",IF(CJ2="CONSTRUCTION","CON",IF(CJ2="NON SERVE","CANX",IF(CJ2="COMP","CP",IF(CJ2="MDU","CP",IF(CJ2="REPULL CP","REP","")))))))&IF(CJ2="FI CON","FI","")
in Column CP
Code:
=IF(ISBLANK(A2),"",A2+7)
in Column CQ
Code:
=IF(OR(C2=314,C2=371,C2=415,C2=512,C2=516,C2=518),"S",IF(C2=544,"N",IF(C2=511,"N",IF(C2=577,"NW",""))))
Any help would be greatly appricaited.