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...
mlsx4
2 years agoMemorable Member
Hi Anonymous
Can you explain a bit more what you want to achieve? Which are the conditions?
- Anonymous2 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])- mlsx42 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))