Forum Discussion
redhughes
8 years agoHelper II
Help with a measure
Hi, I was wondering if someone could help me solve a problem. The data I have looks like this: What I want to achieve is a table that shows how many visits each client had, how m...
- 8 years ago
Hi redhughes,
Then, ideally there would be a row or another visual that states how many clients' ratio was below our target (let's say 0.428).
If I understand it correctly, you should be able to use the formula below to create a new measure to calculate how many clients' ratio was below the target(0.428). :smileyhappy:
Measure = SUMX ( SUMMARIZE ( Sheet1, Sheet1[Client], "abc", IF ( [EmployeesToVisitsRatio] < 0.428, 1, 0 ) ), [abc] )Regards
Greg_Deckler
8 years agoCommunity Champion
Add a Slicer visualization based upon Week column?
redhughes
8 years agoHelper II
I'm mainly after another measure/way of showing count of clients with the ratio below a certain level. Is the slicer going to achieve this?