Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

dax for guage

hi i am looking for to divide nd show the percentage of total requests created by printer requests where model id= PLI PRINTER & request type =support from all requested created i.e 1035/315  to d...
  • amitchandak's avatar
    5 years ago

    Anonymous , Try a measure like

    divide(countrows(Table), calculate(countrows(Table), filter(Table, Table[model id]= "PLI PRINTER" && Table[request type] ="support")))

     

    or

     

    divide( calculate(countrows(Table), filter(Table, Table[model id]= "PLI PRINTER" && Table[request type] ="support")),countrows(Table))

  • Syndicate_Admin's avatar
    5 years ago

    Don't @greeshma,

    Please send me some sample data, and I'll write you a detailed formula.

    Best regards

    Stephen Tao

    If this post helps, consider Accepting it as the solution to help other members find it faster.