Forum Discussion
soumyaiyer
10 months agoHelper IV
Matrix table visual DAX for division
Hi, I have the below Matrix Table showing the data weekly for two groups. Need help with DAX to divide New Hire values/Tenured Values
- 10 months ago
Then these measure patterns will work
T = calculate(sum(Data[Amount]),Data[Type] = "Tensured")
NH = calculate(sum(Data[Amount]),Data[Type] = "New Hire")
D = divide([T],[NH])
Hope this helps.
Ashish_Mathur
10 months agoSuper User
What problem do you face with the measures which i suggested?
soumyaiyer
9 months agoHelper IV
Hi,
After creating the measure suggested, the % increase is not calculated as below. Need help how to use ABS function here to get the correct % increase.
Eg : Week 41 -
| 689 |
| 580 |
The % should be
| 18.79% |
- Ashish_Mathur9 months agoSuper User
Cannot understand your requirement unless you share the file.
- soumyaiyer9 months agoHelper IV
No problem thank you for helping me! I created a new measure to get the output I am looking for.