Forum Discussion
Anonymous
2 years agoNot applicable
DAX total help
Hello experts, In grand total, Am getting 0 or 1 based on the total offshore and onshore houres. But I need to sum up values from each row. Please help. FTE = DIVIDE([Hours Onshore],[Hours Offsh...
Anonymous
2 years agoNot applicable
Hi mlsx4 ,
In grand total, Am getting 0 or 1 based on the total offshore and onshore houres. But I need to sum up values from each row. Please help.
FTE = DIVIDE([Hours Onshore],[Hours Offshore])
mlsx4
2 years agoMemorable Member
Hi Anonymous
How are you doing the table? Formulas are working right for me:
SUM_Col = SUMX(MyTable,DIVIDE(MyTable[Onshore],MyTable[Offshore],0))AVG_Col = AVERAGEX(MyTable,DIVIDE(MyTable[Onshore],MyTable[Offshore],0))