Chart inputs and design

dado6612

Well-known Member
Joined
Dec 4, 2009
Messages
591
Hello all,
Have a table which looks like this:
in A1 is a value of 3000
in A2 is a value of 100
XYSide
2555Z
2555Y
11555Z
11555Y
20555Z
20555Y
223375Z
223375Y
230245Z
230245Y
295050Z
295050Y

<colgroup><col><col span="2"></colgroup><tbody>
</tbody>

How to make 2 charts where:
in first left column are values for X axis, with A1 as highest value
in middle column are values for Y axis, with A2 as highest value
in first chart only show values of Y from right column
in second chart values of Z from right column

Table size may vary for each use, so a macro if possible will do, also sadly none of data can be sorted differently.

If nothing like this is possible with the current arrangement, I'm open to suggestions.

Thanks
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
You may add 4 more columns for 2 charts
1. Yx with formula =IF(Side = "Y", X, NA())
2. Yy with formula =IF(Side = "Y", Y, NA())
3. Zx with formula =IF(Side = "Z", X, NA())
4. Zy with formula =IF(Side = "Z", Y, NA())

then create the first chart from Yx and Yy, create the second chart from Zx and Zy.
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,665
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top