I would like to graph two variables with one condition each. For example, I would like to graph wage and savings, but when wage is greater than 3 and when savings is greater than 50.

I am trying:

graph bar (percent) wages savings if savings==0

However, the graph that i get not only conditions savings by the condition, but also wages. In other words, it graphs all wages that correspond to savings greater than 0. I only want it to condition the variable savings and not wages. What can I do?