However when I add an if statement the consolidated values are no longer shown! N level is fine. This seems bizarre to me but im sure its something simple I'm missing.
That is the point of using the "\". If your value can't be calculated (N/A) it returs a 0. That is probably what is happening at your consolidated level.
Also, don't feed from both sides of your ratio. Normally I feed from the denominator on the basis that if you have zero, you won't get a meaningful result. So.
SKIPCHECK;
['Op Sup Ratio'] = ['Total Operator'] \ ['Total Support'];
FEEDERS;
['Total Support'] =>['Op Sup Ratio'];
Strictly, since your calculation is at all levels, you don't need to feed it at all. If you slice to Excel you will get good numbers. But I admit that this makes life difficult for zero suppressed views so yes, I normally feed ratios like this.