Iccreamann21
New Member
- Joined
- Sep 25, 2013
- Messages
- 48
- Office Version
- 365
- Platform
- Windows
Hello Friends!
It's me again. I'm not entirely sure how to explain this in text, but I will give it a try.
So, I do not run my chart off the pivot table because I need to show the grand total first vs last in my chart. <- I was told the grand total couldn't be moved, without using VBA.
Having said that, the quantity of my data changes daily which then requires me to move the data range on my chart.
My initial thought was to return values as blank, but then my charts showed a bump of empty series points. Then I thought, maybe I could return any blanks with #N/A, and then when selecting my data source I could select hidden and empty cell settings and use the "Show #N/A as an empty cell", but that didn't work either......
My end goal would be for me not to have to change the data range daily to accommodate all the data without showing blank or #N/A points.
It's me again. I'm not entirely sure how to explain this in text, but I will give it a try.
So, I do not run my chart off the pivot table because I need to show the grand total first vs last in my chart. <- I was told the grand total couldn't be moved, without using VBA.
Having said that, the quantity of my data changes daily which then requires me to move the data range on my chart.
My initial thought was to return values as blank, but then my charts showed a bump of empty series points. Then I thought, maybe I could return any blanks with #N/A, and then when selecting my data source I could select hidden and empty cell settings and use the "Show #N/A as an empty cell", but that didn't work either......
My end goal would be for me not to have to change the data range daily to accommodate all the data without showing blank or #N/A points.
Cell Formulas | ||
---|---|---|
Range | Formula | |
X3:X37 | X3 | =IF(L6="",#N/A,IF(L6="0",#N/A,IF(L6="","",L6))) |
Y3:Y37 | Y3 | =IF(O6="",#N/A,IF(O6="0",#N/A,IF(O6="","",O6))) |
Z3:AA37 | Z3 | =IF(M6="",#N/A,IF(M6="0",#N/A,IF(M6="","",M6))) |