Forum Discussion
FaisalImam
Helper I
3 years agoStatic Data and specific measures in a matrix/table
Hi Guys, I have a static table loaded in power bi : metric minimum level maximum level p1 45% 100% p2 95% 105% p3 85% 95% I have calculated some measures but it has no...
lukiz84
Memorable Member
3 years agoCan you show some sample data of the other table? (The one where your measures calculate data from...)
FaisalImam
Helper I
3 years agoIt is like incident table
| incnumber | active/inactive | opened | closed | state | month | year |
Kind of measures i have created -
P2 Resolution Total_Tickets = CALCULATE(COUNT('Incident Data'[Number]),FILTER('Incident Data','Incident Data'[Priority] = "2 - High"),FILTER('Incident Data','Incident Data'[OPENED MONTH] = MONTH(TODAY())))
P2 Resolution_Achieved = CALCULATE(COUNT('Incident Data'[Number]),FILTER('Incident Data','Incident Data'[Priority] = "2 - High"),FILTER('Incident Data','Incident Data'[SLA MET]= "Achieved"),FILTER('Incident Data','Incident Data'[OPENED MONTH] = MONTH(TODAY())))
Please note , I dont find any relation between static table and measures calculated. Measures are very complext based on filters,state,etc.