Hi Ricardo,
What exact version of LEAP are you using? The option to export all energy balances did not make it into LEAP2024 yet. I will try to add that back in soon. In the meantime you could write a simple VB script to do this. Try running the following in Advanced: Edit Scripts. Set ExportEveryXYears to 1 if you want to export energy balances for all years.You could save the script as "ExportEnergyBalances.VBS" if you want to use it multiple times.
ExportEveryXYears = 10
LEAP.ActiveView = "Energy Balance"
for y = LEAP.BaseYear to LEAP.EndYear
if (y mod ExportEveryXYears) = 0 then
LEAP.ActiveYear = y
LEAP.ExportEnergyBalanceXLS
end if
next
Hope this helps!
Charlie