ClearBlock vs ClearData
Leo27Oct 25 2012 — edited Oct 25 2012I need to clear Actuals data before i load fresh data. So i have below two options, though both are working for me, i would like to know which one is recommended and why.
Fix(&CurrentMonth, &CurrentYear, "Final")
ClearData "Actual";
EndFix
or
Fix(&CurrentMonth, &CurrentYear, "Final", "Actual")
ClearBlock All;
EndFix
PS: Pls dont tell me to read the documentation, if it made a lot of sense, i wouldnt be here.