Forum Discussion
AllG
5 years agoFrequent Visitor
Measure with row level calculations
Need help to create measure with row level calculations instead of calculated column. For example: Revenue = Posted Hours * Hourly Rate Tables: Employee table with general informat...
- 5 years ago
It's hard to say exactly what you need but the general approach would be something along these lines:
Revenue = SUMX ( Transaction, Transaction[Posted Hours] * RELATED ( HourlyRate[Hourly Rate] ) )
AlexisOlson
5 years agoSuper User
It's hard to say exactly what you need but the general approach would be something along these lines:
Revenue =
SUMX (
Transaction,
Transaction[Posted Hours] * RELATED ( HourlyRate[Hourly Rate] )
)
AllG
5 years agoFrequent Visitor
Awesome!! thanks