What i want the formula to do is take the calculated cumulative weight loss in kgs from column F and convert it to Stones and pounds in Column G.
It correctly does the conversion BUT until there is an entry in column F. (ie. while column f is blank for future weeks) then it shows #value ! in Column G
the formula i have used is...
=IF(OR(ISBLANK(F8),ISBLANK(#REF!)),"",(INT(CONVERT(F8,"kg","lbm")/14)&" st "&ROUND(MOD(CONVERT(F8,"kg","lbm"),14),0)&" lbs "))
It correctly does the conversion BUT until there is an entry in column F. (ie. while column f is blank for future weeks) then it shows #value ! in Column G
the formula i have used is...
=IF(OR(ISBLANK(F8),ISBLANK(#REF!)),"",(INT(CONVERT(F8,"kg","lbm")/14)&" st "&ROUND(MOD(CONVERT(F8,"kg","lbm"),14),0)&" lbs "))