• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Dynamic Range Ingoring Blank Cell with Formula

Dokat

Member
Hi,

I have below dynamic range but i'd like formula to ignore blank cells with formulas. Does anyone have a solution for it?

"=OFFSET(Inno!$AU$6,0,0,COUNTA(Inno!$AU:$AU)-1,1)"

Thanks
 
Hi Dokat,

Try using this formula =OFFSET(Inno!$AU$6,0,0,COUNTIF(Inno!$AU:$AU,"<>"")-countif(Inno!$AU:$AU,""")) or try replacing countA with count formula.

Hope it helps!!!

Thanks
Jaya
 
1] What is the type of your dynamic range? text or numeric?

2] Where are the blank cells? in-between or after the range ?

Regards
Bosco
 
Unless you range contains multi-cell array formulas, I would recommend using a Table. That makes the table body range or any column within it fully dynamic without counting or searching for the end (no volatile functions). If you actually need to know the number of records that is given by
= ROWS(tableName)
 
Back
Top