Suppose cells A2:A9 contains...
{"x=1"
;"y=2"
;"z=-3"
;"vol=13"
;"x=-2"
;"y=5"
;"z=0.1"
;"vol=20"}
Enter, =RIGHT(A2,LEN(A2)-FIND("=",A2))+0, into
cell B2 and Fill down to cell B9. Filter column A
where the value "begins with" "vol". Graph the
contents of column B.
This formula should extract the number from the cell (I am assuming there is always an equals in the formula, and that the vol=20 is in cell A1
=VALUE(RIGHT(A1,LEN(A1)-FIND("=",A1)))
to then select non-adjacent rows or columns, select the first row or column as normal, then hold down CTRL while selecting the second.
OK! this works but when I graph the contents of
column B, the zeros appear. How do I plot only
non-blank cell contents???
(The "Plot visible cells only" Option is not
clearing the zero points for blank cells)
Only graph the column B:B range (B2:B9 in my
example) that contains the results of the formula,
=RIGHT(A2,LEN(A2)-FIND("=",A2))+0.