Forum Discussion
electrobrit
Post Patron
3 years agoconditional statement by name for weekly totals
I am trying to get total available hours by week which is usually 40 but one person works 20. In trying to get this in the table by person by week Is there a conditional statement I can use? if na...
- Anonymous3 years ago
Dinesh_Suranga
Continued Contributor
3 years agoHi,
Use following DAX formula.
Column = IF(SELECTEDVALUE(-AvailHours[narrative_full_name]) = "John", 5*4,5*8)
If it works, Please accept it as solution.
Thank you.