Hi @oves,
If need be, you could define your own power function and use this in place of the exponential operator:
proc fcmp outlib=work.funcs.test;
function pow(x, y);
z=if x=y=0 then 1 else x**y;
return(z);
endsub;
run;
options cmplib=work.funcs;
data test;
input a b;
c=pow(a,b);
cards;
2 3
0 0
;
@PaigeMiller: Hilarious! 🙂 This beats "y=(.1+.2-.3)**0;" as a fun answer to @oves's question.
... View more