Forum Discussion
gene7135
9 years agoRegular Visitor
Unable to create measure
I am sure this is a newbie question.
I have trying to create a measure with the following DAX formula.
Submit Count = Divide(Count('Raw Data'[Repair Order]), 'Working Days'[Num of Days] ))
I do have a relationship between the two table, but the intellisence refuses to see the "Working Days" table.
Any ideas why?
You need to add a aggregation to Num of Days
Something Like: (Sum, Count, Min,Max, Values.etc)
Submit Count = Divide(Count('Raw Data'[Repair Order]), Sum('Working Days'[Num of Days] ))
7 Replies
- alanhodgsonSolution Supplier
Hey gene7135,
Please share a screenshot of your data structure. There is probably something off in the relationship.
Best,
Alan