I’m working in an Hour report and have two calculated columns, one for “Billable Hours” as follows
aggregator.displayformat=doubleAsDouble
aggregator.function=SUM
aggregator.namekey=hour.plural
aggregator.valueexpression=IF({hourType}.{countAsRevenue}=true,{hours},"")
aggregator.valueformat=doubleAsDouble
displayname=Billable Hours
textmode=true
valueexpression=IF({hourType}.{countAsRevenue}=true,{hours},"")
valueformat=doubleAsDouble
The other is “Total Hours (Less X40 & PTO)
aggregator.displayformat=doubleAsDouble
aggregator.function=SUM
aggregator.namekey=hour.plural
aggregator.valueexpression=SUB({hours},IF({hourType}.{name}="MCS - X40",{hours},IF({hourType}.{name}="MCS - Paid Time Off",{hours},"")))
aggregator.valueformat=doubleAsDouble
displayname=Total Hours (Less X40 & PTO)
textmode=true
valueexpression=SUB({hours},IF({hourType}.{name}="MCS - X40",{hours},IF({hourType}.{name}="MCS - Paid Time Off",{hours},"")))
valueformat=doubleAsDouble
I would like another column that will divide “Billable Hours” by “Total Hours (Less X40 & PTO)”