Remove Zeros from Planning

This script will replace all the zeros in the scenario Actual with #Missing, thus reducing the size of the database.  After running script, must do a dense restructure.

SET UpdateCalc Off;

Actual = Actual / (Actual != 0);

 

Leave a comment