Hi!
I have an Excel graph that receives weekly data input. Currently, the graph simply reverts to 0 or the lowest value on the Y-axis for the next point yet to be inputted.
Is it possible to hide the slope until data is inputted for the corresponding week?
Picture of graph:
Sk?rmbillede 2024-03-28 kl. 18.56.49.png
Graph data:
Sk?rmbillede 2024-03-28 kl. 18.34.47.png
Each of the cells has a formula similar to this, only criteria and week can change. I tried using NA or "" to make the graph ignore the 0 values but no luck.
=MAX(
IF('Styrke, Uge 3'!B3="Comp Bench"; 'Styrke, Uge 3'!W3; 0);
IF('Styrke, Uge 3'!B11="Comp Bench"; 'Styrke, Uge 3'!W11; 0);
IF('Styrke, Uge 3'!B71="Comp Bench"; 'Styrke, Uge 3'!W71; 0);
IF('Styrke, Uge 3'!B79="Comp Bench"; 'Styrke, Uge 3'!W79; 0);
IF('Styrke, Uge 3'!B217="Comp Bench"; 'Styrke, Uge 3'!W217; 0);
IF('Styrke, Uge 3'!B225="Comp Bench"; 'Styrke, Uge 3'!W225; 0);
IF('Styrke, Uge 3'!B285="Comp Bench"; 'Styrke, Uge 3'!W285; 0);
IF('Styrke, Uge 3'!B293="Comp Bench"; 'Styrke, Uge 3'!W293; 0);
IF('Styrke, Uge 3'!B431="Comp Bench"; 'Styrke, Uge 3'!W431; 0);
IF('Styrke, Uge 3'!B439="Comp Bench"; 'Styrke, Uge 3'!W439; 0);
IF('Styrke, Uge 3'!B447="Comp Bench"; 'Styrke, Uge 3'!W447; 0)
)
Bookmarks