=IF([YOURFORMULA]=0,NA(),[YOURFORMULA])
=IF(A1=0,NA(),A1)
Hi Skotland - Welcome to the Forum
You can hide zero values by using NA() which will mean they aren't plotted.
If the data being plotted is the result of a formula you can use it like this;
Code:=IF([YOURFORMULA]=0,NA(),[YOURFORMULA])
Or, you can just make a formula and plot that range instead? For each of your current data cells make a copy row / column with;
Code:=IF(A1=0,NA(),A1)
Does that help?
=IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);"00:00:00");"")
=IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);NA());"")
You don't need to merge it, looks like the 0 values are being put in place by your formula if there is an error?
So just change it to;
Code:=IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);NA());"")
Does that work?
You don't need to merge it, looks like the 0 values are being put in place by your formula if there is an error?
So just change it to;
Code:=IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);NA());"")
Does that work?
=IF(IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);"00:00:00");"")=0;"#N/A";IF(OR($O$1=M35;$O$1="All reps");IFERROR(SUMIFS('INPUT PC LOGINTIME'!$G:$G;'INPUT PC LOGINTIME'!$F:$F;"Available";'INPUT PC LOGINTIME'!$H:$H;'SALES DASH'!M35);"00:00:00");""))