|
Re: Automatically updated chart show empty cells as a gap - how to fix it?
If you change your COUNTA to COUNT it will only see numbers (not formula's).
Also, your yVal needs to move up one...
xVal=OFFSET(Sheet1!$A$2,0,0,COUNT(Sheet1!$A:$A),1)
yVal=OFFSET(Sheet1!$C$2,0,0,COUNT(Sheet1!$B:$B),1)
|