Buffi The Gym Girl Beta > Financials
Decisions
Graphs
Tables
Reports
Help
Exit
## This where the table creation begins
#set ($TableVariableList = ["","gym_one_revenue","","total_expense","","gym_one_NOI","","monthly_profit_or_loss"])
#set ($TimeRange = [0..$Run.SimStep])
## Table Title Row
Financials
|
## Header Row
TIME
|
#foreach( $VariableName in $TableVariableList)
#if($VariableName == "")  #else $Values.get($VariableName).Label#end
|
#end
## End of Header Row
## Loop through each data row
#foreach( $step in $TimeRange )
$Run.convertStepToTime($step)
|
#foreach( $VariableName in $TableVariableList )
#if($VariableName == "")
 
#else
$Values.get($VariableName).getResultFormatted($step)
#end
|
#end
#end
## Completed Table Creation
|