Forum Discussion
sabariprabu
4 years agoFrequent Visitor
Measure based on only Date Filter Condition
Hi, I have the below table data. Price amount is stored based on Year-Month and Type (Actual/Budget). Year- Month field is having a relationship with Data Table. There are date, month and ye...
- 4 years ago
sabariprabu ,These measures should help
Actual= AverageX(Values(Table[Month Year]) , Calculate(Sum(Table[price]), filter(Table, Table[Type] = "Actual")) )
Budget= AverageX(Values(Table[Month Year]) , Calculate(Sum(Table[price]), filter(Table, Table[Type] = "Budget")) )
amitchandak
4 years agoSuper User
sabariprabu ,These measures should help
Actual= AverageX(Values(Table[Month Year]) , Calculate(Sum(Table[price]), filter(Table, Table[Type] = "Actual")) )
Budget= AverageX(Values(Table[Month Year]) , Calculate(Sum(Table[price]), filter(Table, Table[Type] = "Budget")) )