Forum Discussion
abeirne
Helper II
4 years agoUsing filter functions on a measure in table
Hi all, I am trying to show the email capture rate of my stores, but the table I am currently using shows all of the employees. I would like to show the email capture rate per store versus per employ...
- Anonymous4 years ago
Hi abeirne ,
Are 'Invoice_Detail_' [GC] the same for the same stores?
Please try this formula.
Email Capture % = CALCULATE ( DISTINCTCOUNT ( Invoice_[Customer_Email_Address] ), FILTER ( ALL ( Invoice_ ), [stores] = SELECTEDVALUE ( stores ) ) ) / SELECTEDVALUE ( 'Invoice_Detail_'[GC] )Best Regards,
Jay
abeirne
Helper II
4 years agoYeah I know it was not super clear, sorry for that. I hadn't thought of the allexcept, I will try it. Thank you!