excel - using counta in offset and dealing with cells with no value -
i using offset range of last 7 entries in column updates automatically when add data it. however, able automate as possible have use formula determine if there value display in cell. causes cell not-empty , offset isn't working. workaround this?
i copy data sheet1 sheet because need hide columns in sheet1, , therefor can't create sparkline values anymore. copying data column b on sheet 2:
=if(sheet1!o18<>"";sheet1!o18;"")
using offset:
=offset(sheet2!$b$3;counta(sheet2!$b:$b)-7;0;7)
i got working workaround in offset; changed formula on sheet2 assign value 0 in case of no-entry, , changed offset counta(sheet2!$b:$b)-countif(sheet2!$b:$b;0)-7 works :)
Comments
Post a Comment