- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Unique date wise unique Product Count & Accepted Rejected Count
My Database name is "PDI DATA"& i required Unique date wise unique names count & Accepted, rejected Count too. E.g. 27-03-2021 has "HM-12.5A-LM-ACC-NS" count is 1 and Accepted Count 1 & 27-03-2021 has "12.5C-FDB-ACC" also count is 1and Accepted Count 1. And at the end i need Grand total of counts
Inspection Date | Product | Result |
27-03-2021 | HM-12.5A-LM-ACC-NS | Accepted |
27-03-2021 | HM-12.5B-LM-ACC-NS | Accepted |
27-03-2021 | 12.5C-FDB-ACC | Accepted |
27-03-2021 | LTT8-20 | Accepted |
25-03-2021 | CLR400000-A2 | Rejected |
26-03-2021 | LD200686-E2 | Accepted |
26-03-2021 | LD200686-E2 | Accepted |
26-03-2021 | LD200686-E2 | Accepted |
26-03-2021 | LD200686-E2 | Accepted |
25-03-2021 | LDRR24-CDL | Rejected |
25-03-2021 | LDRR24-CDL | Rejected |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LL725003-D1 | Accepted |
25-03-2021 | LDLRC-20PRO-CDL | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
25-03-2021 | LT8-20-865-2 | Accepted |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @jackypatel , you can try these measures:
names = DISTINCTCOUNT('PDI DATA'[Product])
accepted =
VAR _t =
SUMMARIZE (
'PDI DATA',
'PDI DATA'[Inspection Date],
'PDI DATA'[Product],
'PDI DATA'[Result]
)
VAR _accepted = FILTER ( _t, [Result] = "Accepted" )
RETURN
COUNTX ( _accepted, [Result] )
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @jackypatel , you can try these measures:
names = DISTINCTCOUNT('PDI DATA'[Product])
accepted =
VAR _t =
SUMMARIZE (
'PDI DATA',
'PDI DATA'[Inspection Date],
'PDI DATA'[Product],
'PDI DATA'[Result]
)
VAR _accepted = FILTER ( _t, [Result] = "Accepted" )
RETURN
COUNTX ( _accepted, [Result] )
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
10-21-2023 03:13 AM | |||
07-26-2024 06:59 AM | |||
08-29-2024 01:07 PM | |||
09-13-2024 01:56 PM | |||
12-20-2023 12:49 AM |
User | Count |
---|---|
107 | |
85 | |
80 | |
54 | |
46 |